PageRenderTime 42ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 0ms

/WorldView/Structures/TerraInfo/CraftingSpotInfo.cs

#
C# | 21 lines | 19 code | 2 blank | 0 comment | 0 complexity | 078e5ddb1983a6d7fdd368626d9e661f MD5 | raw file
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace MoreTerra.Structures.TerraInfo
  6. {
  7. class CraftingSpotInfo
  8. {
  9. public String name;
  10. public String type;
  11. public List<String> tileSets;
  12. public CraftingSpotInfo()
  13. {
  14. name = String.Empty;
  15. type = String.Empty;
  16. tileSets = new List<String>();
  17. }
  18. }
  19. }