예제 #1
0
파일: Level.cs 프로젝트: tomand/Troopers
 public Level(int width, int height, Vector2 position, string levelId)
 {
     _random = new Random();
     Position = position;
     _width = width;
     _height = height;
     _cursor = new Cursor(new Vector2(0, 0), 1f);
     _levelId = levelId;
 }
예제 #2
0
 public CursorView(Camera cam, Cursor cursor)
     : base(cam)
 {
     Cursor = cursor;
 }