This commit is contained in:
Mikhail 2026-04-14 12:52:50 +08:00
parent 10185a6525
commit 716df5e9c1
5 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
using DCFApixels.DragonECS.RunnersCore;
using DCFApixels.DragonECS.Core;
using DCFApixels.DragonECS.Unity;
using DCFApixels.DragonECS.Unity.Internal;

View File

@ -1,5 +1,5 @@
#if UNITY_EDITOR
using DCFApixels.DragonECS.RunnersCore;
using DCFApixels.DragonECS.Core;
using DCFApixels.DragonECS.Unity.Internal;
using System;
using System.Linq;

View File

@ -1,5 +1,5 @@
#if UNITY_EDITOR
using DCFApixels.DragonECS.RunnersCore;
using DCFApixels.DragonECS.Core;
using DCFApixels.DragonECS.Unity.Internal;
using System;
using System.Collections.Generic;

View File

@ -1,7 +1,7 @@
#if DISABLE_DEBUG
#undef DEBUG
#endif
using DCFApixels.DragonECS.RunnersCore;
using DCFApixels.DragonECS.Core;
using DCFApixels.DragonECS.Unity.Internal;
using System;
using System.Collections.Generic;

View File

@ -36,7 +36,7 @@ namespace DCFApixels.DragonECS.Unity.Docs
private static List<Type> GetTypes()
{
Type metaAttributeType = typeof(EcsMetaAttribute);
Type metaAttributeType = typeof(DragonMetaAttribute);
List<Type> result = new List<Type>(512);
foreach (var assembly in AppDomain.CurrentDomain.GetAssemblies())
{