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
Afficher le fichier Open project: jacobdufault/forge-unity

Méthodes publiques

Méthode 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 méthode

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

TryGetInput() public abstract méthode

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.
Résultat bool