Settings.cs
上传用户:gb3593
上传日期:2022-01-07
资源大小:3028k
文件大小:1k
源码类别:

游戏引擎

开发平台:

Visual C++

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TestBed.Net
  5. {
  6.     public class Settings
  7.     {
  8.         public float Hz = 60;
  9.         public int  IterationCount = 10;
  10.         public bool DrawStats = false;
  11.         public bool DrawContacts = false;
  12.         public bool DrawImpulses = false;
  13.         public bool DrawAABBs = false;
  14.         public bool DrawPairs = false;
  15.         public bool WarmStarting = true;
  16.         public bool PositionCorrection = true;
  17.         public bool Pause = false;
  18.     }
  19. }