ConstSortingOrder.cs 141 B

12345678
  1. namespace GFGGame
  2. {
  3. public class ConstSortingOrder
  4. {
  5. public const int TOP = 99;
  6. public const int Debug = 100;
  7. }
  8. }