예제 #1
0
파일: Task3D.cs 프로젝트: naegelyd/therawii
 public Task3D()
 {
     endCondition = new ButtonEndCondition();
     primaryInput = new InputBalanceBoard();
     region = new Region();
     inputHandling = InputHandling.Differential;
 }
예제 #2
0
파일: Task2D.cs 프로젝트: naegelyd/therawii
 public Task2D()
 {
     additionalInput = new List<InputDevice>();
     endCondition = new ButtonEndCondition();
     primaryInput = new InputBalanceBoard();
     regionEnabled = false;
     rand = new Random();
     region = new Region();
     ((RegionParameter)region.rParams[regPT.Z]).pos = new float[2]{0,0};
     ((RegionParameter)region.rParams[regPT.Z]).size = new float[2]{0,0};
 }