コード例 #1
0
 public EditorPlayerRenderer(EditorWorld world, EditorPlayer player)
 {
     _world = world;
     _player = player;
 }
コード例 #2
0
 public EditorWorldRenderer(EditorWorld world)
 {
     _world = world;
     _mapRenderer = new EditorMapRenderer(_world.Map);
 }
コード例 #3
0
 public EditorPlayerController(EditorWorld world, EditorPlayer player)
 {
     _world = world;
     _player = player;
 }
コード例 #4
0
ファイル: EditorLevel.cs プロジェクト: JaakkoLipsanen/WVVW
 public EditorLevel(EditorWorld world)
 {
     _world = world;
     _player = new EditorPlayer();
 }