AppManager.UpdateManager C# (CSharp) Method

UpdateManager() public method

public UpdateManager ( ) : void
return void
    public virtual void UpdateManager()
    {
        //Does nothing but anyone extending AppManager can run their update calls here
    }
    

Usage Example

Ejemplo n.º 1
0
    void Update()
    {
        if (mErrorOccurred)
        {
            return;
        }

        InputController.UpdateInput();
        mAppManager.UpdateManager();
    }
All Usage Examples Of AppManager::UpdateManager