SkinPartOffset - Change member variables 'Type' and 'Value' to properties

This commit is contained in:
miku-666
2024-03-29 14:32:35 +01:00
parent 5627aaa68f
commit 4a554569dc

View File

@@ -40,8 +40,8 @@ namespace PckStudio.Internal
"BOOT1",
};
public readonly string Type;
public readonly float Value;
public string Type { get; }
public float Value { get; }
public SkinPartOffset(string type, float value)
{