Artemis.Engine.UpdatableObject.SetUpdater C# (CSharp) Method

SetUpdater() public method

Set the updater for this object.
public SetUpdater ( Updater updater ) : void
updater Updater
return void
        public void SetUpdater(Updater updater)
        {
            Updater = null;
            Updater += RequiredUpdater;
            Updater += updater;
        }