示例#1
0
 static void Main(string[] args)
 {
     using (MotorDemo game = new MotorDemo())
     {
         game.Run();
     }
 }
示例#2
0
        public void InternalTickCallback(DynamicsWorld world, float timeStep)
        {
            MotorDemo motorDemo = (MotorDemo)world.GetWorldUserInfo();

            motorDemo.SetMotorTargets(timeStep);
        }
		static void Main(string[] args)
		{
			using (MotorDemo game = new MotorDemo())
			{
				game.Run();
			}
		}