Further minor import clean up.

This commit is contained in:
2019-11-24 16:20:26 -05:00
parent 14ee906edd
commit 29daabdaf6
4 changed files with 16 additions and 16 deletions

View File

@@ -1,4 +1,5 @@
using RecrownedAthenaeum.UI.SkinSystem.Definitions;
using RecrownedAthenaeum.Types;
namespace RecrownedAthenaeum.Data
{
@@ -76,10 +77,10 @@ namespace RecrownedAthenaeum.Data
public ColorData(string name, Color color)
{
this.name = name;
r = color.R;
g = color.G;
b = color.B;
a = color.A;
r = color.r;
g = color.g;
b = color.b;
a = color.a;
}
}