BattleModule.cs 159 B

12345678910
  1. namespace OpenVIII
  2. {
  3. public enum BattleModule : byte
  4. {
  5. Init = 0,
  6. ReadData = 1,
  7. DrawGeometry = 2,
  8. Active = 3,
  9. }
  10. }