Skip to content

Commit

Permalink
another attempt fix
Browse files Browse the repository at this point in the history
  • Loading branch information
TomSimons committed Feb 5, 2024
1 parent 2ea5e32 commit e69cc4b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 24 deletions.
6 changes: 0 additions & 6 deletions Assets/Scripts/CSVReader/link.xml

This file was deleted.

7 changes: 0 additions & 7 deletions Assets/Scripts/CSVReader/link.xml.meta

This file was deleted.

22 changes: 11 additions & 11 deletions Assets/Scripts/Layers/Adapters/CSVImportAdapter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ namespace Netherlands3D.Twin

public class IDColor
{
[Index(0)] public string Id { get; set; }
[Index(1)] public string HexColor { get; set; }
public string Id { get; set; }
public string HexColor { get; set; }

public Color Color
{
Expand All @@ -41,15 +41,15 @@ public Color Color
}
}

public IDColor() //needed for CSVHelper to work in a build
{
}

public IDColor(string id, string hexColor)
{
Id = id;
HexColor = hexColor;
}
// public IDColor() //needed for CSVHelper to work in a build
// {
// }
//
// public IDColor(string id, string hexColor)
// {
// Id = id;
// HexColor = hexColor;
// }
}


Expand Down

0 comments on commit e69cc4b

Please sign in to comment.