C# Класс Forge.Unity.ForgeDependencyComponent

The ForgeDependencyComponent contains all of the dependencies that the the runtime system requires that can be configured by the end-user.
Наследование: UnityEngine.MonoBehaviour
Показать файл Открыть проект

Открытые методы

Метод Описание
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.

Описание методов

SendInput() публичный абстрактный Метод

Send the given input across the network or similar.
public abstract SendInput ( List input ) : void
input List The input to send.
Результат void

TryGetInput() публичный абстрактный Метод

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.
Результат bool