PageRenderTime 45ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/WorldView/Structures/TerraInfo/ItemInfo.cs

#
C# | 19 lines | 17 code | 2 blank | 0 comment | 0 complexity | 1cd787ba12584fa2ca333b6bb0ff63d9 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. public class ItemInfo
  8. {
  9. public String name;
  10. public String foundIn;
  11. public Int32 netId;
  12. public Int32 imageId;
  13. public ItemInfo()
  14. {
  15. }
  16. }
  17. }