fix for support 7.3

This commit is contained in:
Mikhail 2024-03-07 03:34:24 +08:00
parent 672e253b49
commit 5ee538fc82

View File

@ -309,11 +309,11 @@ namespace DCFApixels.DragonECS
public interface ITypeMeta
{
public string Name { get; }
public MetaColor Color { get; }
public string Description { get; }
public MetaGroup Group { get; }
public IReadOnlyCollection<string> Tags { get; }
string Name { get; }
MetaColor Color { get; }
string Description { get; }
MetaGroup Group { get; }
IReadOnlyCollection<string> Tags { get; }
}
public sealed class TypeMeta : ITypeMeta
{