From a863d6ee81d8219354eb82b62cb1b075108a46f8 Mon Sep 17 00:00:00 2001 From: Mikhail <99481254+DCFApixels@users.noreply.github.com> Date: Sat, 2 Mar 2024 04:19:09 +0800 Subject: [PATCH] fix for support 7.3 --- src/Debug/MetaAttributes/MetaColorAttribute.cs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/Debug/MetaAttributes/MetaColorAttribute.cs b/src/Debug/MetaAttributes/MetaColorAttribute.cs index 9801d69..57755f6 100644 --- a/src/Debug/MetaAttributes/MetaColorAttribute.cs +++ b/src/Debug/MetaAttributes/MetaColorAttribute.cs @@ -7,14 +7,14 @@ namespace DCFApixels.DragonECS public interface IMetaColor { #region Properties - public byte R { get; } - public byte G { get; } - public byte B { get; } - public byte A { get; } - public float FloatR { get; } - public float FloatG { get; } - public float FloatB { get; } - public float FloatA { get; } + byte R { get; } + byte G { get; } + byte B { get; } + byte A { get; } + float FloatR { get; } + float FloatG { get; } + float FloatB { get; } + float FloatA { get; } #endregion } [AttributeUsage(AttributeTargets.Struct | AttributeTargets.Class | AttributeTargets.Interface, Inherited = false, AllowMultiple = false)]