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

/WorldView/Structures/TerraInfo/ColorInfo.cs

#
C# | 19 lines | 17 code | 2 blank | 0 comment | 0 complexity | 42cf74340b673cbffa5e80f65ecd7ed5 MD5 | raw file
  1. using System;
  2. using System.Drawing;
  3. namespace MoreTerra.Structures.TerraInfo
  4. {
  5. public class ColorInfo
  6. {
  7. public String name;
  8. public Color color;
  9. public Boolean isCustom;
  10. public ColorInfo()
  11. {
  12. name = String.Empty;
  13. color = Color.Black;
  14. isCustom = false;
  15. }
  16. }
  17. }