FSO.LotView.WorldComponent.Initialize C# (CSharp) Method

Initialize() public method

public Initialize ( GraphicsDevice device, FSO.LotView.WorldState world ) : void
device GraphicsDevice
world FSO.LotView.WorldState
return void
        public virtual void Initialize(GraphicsDevice device, WorldState world)
        {
            OnWorldChanged(world);
        }

Usage Example

Ejemplo n.º 1
0
 private void InitWorldComponent(WorldComponent component)
 {
     component.Initialize(this.World.State.Device, this.World.State);
 }