PageRenderTime 23ms CodeModel.GetById 1ms RepoModel.GetById 0ms app.codeStats 0ms

/WorldView/Structures/TerraInfo/TileInfo.cs

#
C# | 27 lines | 22 code | 5 blank | 0 comment | 0 complexity | dacdac275cab8efcf10e9f0fdc8a962b MD5 | raw file
  1. using System;
  2. using System.Drawing;
  3. namespace MoreTerra.Structures.TerraInfo
  4. {
  5. public class TileInfo
  6. {
  7. public String name;
  8. public String colorName;
  9. public String markerName;
  10. public Color color;
  11. public Color officialColor;
  12. public Int32 tileImage;
  13. public Boolean important;
  14. public Boolean Important
  15. {
  16. get
  17. {
  18. return important;
  19. }
  20. }
  21. }
  22. }