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 interface ITypeMeta
{ {
public string Name { get; } string Name { get; }
public MetaColor Color { get; } MetaColor Color { get; }
public string Description { get; } string Description { get; }
public MetaGroup Group { get; } MetaGroup Group { get; }
public IReadOnlyCollection<string> Tags { get; } IReadOnlyCollection<string> Tags { get; }
} }
public sealed class TypeMeta : ITypeMeta public sealed class TypeMeta : ITypeMeta
{ {