Tables.cs 705 B

12345678910111213141516171819202122232425262728293031
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // This code was generated by a tool.
  4. // Changes to this file may cause incorrect behavior and will be lost if
  5. // the code is regenerated.
  6. // </auto-generated>
  7. //------------------------------------------------------------------------------
  8. using Luban;
  9. using SimpleJSON;
  10. namespace cfg
  11. {
  12. public partial class Tables
  13. {
  14. public item.TbItem TbItem {get; }
  15. public Tables(System.Func<string, JSONNode> loader)
  16. {
  17. TbItem = new item.TbItem(loader("item_tbitem"));
  18. ResolveRef();
  19. }
  20. private void ResolveRef()
  21. {
  22. TbItem.ResolveRef(this);
  23. }
  24. }
  25. }