C# Class Forge.Unity.ForgeDependencyComponent

The ForgeDependencyComponent contains all of the dependencies that the the runtime system requires that can be configured by the end-user.
Inheritance: UnityEngine.MonoBehaviour
Show file Open project: jacobdufault/forge-unity

Public Methods

Method Description
SendInput ( List input ) : void

Send the given input across the network or similar.

TryGetInput ( List &input ) : bool

Try to get any pending input that the IGameEngine needs to execute.

Method Details

SendInput() public abstract method

Send the given input across the network or similar.
public abstract SendInput ( List input ) : void
input List The input to send.
return void

TryGetInput() public abstract method

Try to get any pending input that the IGameEngine needs to execute.
public abstract TryGetInput ( List &input ) : bool
input List The input, if there is any.
return bool