gd_chest.cs 566 B

12345678910111213141516171819
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class gd_chest
  5. {
  6. public static string TableName = "gd_chest";
  7. public static string ID = "i";
  8. public static string DatabaseRoomID = "di";
  9. public static string Owner = "o";
  10. public static string ActivatedTime = "a";
  11. public static string Value = "v";
  12. public static string Round = "r";
  13. public static string RemainRound = "rr";
  14. public static string RemainValue = "rv";
  15. public static string Type = "t";
  16. public static string Position = "p";
  17. }