fix for support 7.3

This commit is contained in:
Mikhail 2024-03-02 04:19:09 +08:00
parent dc7e1631a4
commit a863d6ee81

View File

@ -7,14 +7,14 @@ namespace DCFApixels.DragonECS
public interface IMetaColor public interface IMetaColor
{ {
#region Properties #region Properties
public byte R { get; } byte R { get; }
public byte G { get; } byte G { get; }
public byte B { get; } byte B { get; }
public byte A { get; } byte A { get; }
public float FloatR { get; } float FloatR { get; }
public float FloatG { get; } float FloatG { get; }
public float FloatB { get; } float FloatB { get; }
public float FloatA { get; } float FloatA { get; }
#endregion #endregion
} }
[AttributeUsage(AttributeTargets.Struct | AttributeTargets.Class | AttributeTargets.Interface, Inherited = false, AllowMultiple = false)] [AttributeUsage(AttributeTargets.Struct | AttributeTargets.Class | AttributeTargets.Interface, Inherited = false, AllowMultiple = false)]