Ejemplo n.º 1
0
 public EditorPlayerRenderer(EditorWorld world, EditorPlayer player)
 {
     _world = world;
     _player = player;
 }
Ejemplo n.º 2
0
 public TileSelectorList(EditorPlayer player)
 {
     _player = player;
     this.CreateUi();
 }
Ejemplo n.º 3
0
 public ResizeButton(EditorPlayer player)
     : base(ResizeButton.Area)
 {
     _player = player;
 }
Ejemplo n.º 4
0
 public EditorPlayerController(EditorWorld world, EditorPlayer player)
 {
     _world = world;
     _player = player;
 }
Ejemplo n.º 5
0
 public EditorLevel(EditorWorld world)
 {
     _world = world;
     _player = new EditorPlayer();
 }