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
파일 보기 프로젝트 열기: jacobdufault/forge-unity

공개 메소드들

메소드 설명
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