up[update

This commit is contained in:
Mikhail 2024-11-07 10:23:58 +08:00
parent f813257f28
commit ca43d1e1b4
2 changed files with 10 additions and 2 deletions

View File

@ -16,7 +16,11 @@ namespace DCFApixels.DragonECS
} }
public override bool IsCached public override bool IsCached
{ {
get { throw new NotImplementedException(); } get { return false; }
}
public override int LastCachedCount
{
get { return 0; }
} }
#endregion #endregion

View File

@ -36,7 +36,11 @@ namespace DCFApixels.DragonECS
} }
public override bool IsCached public override bool IsCached
{ {
get { throw new NotImplementedException(); } get { return false; }
}
public override int LastCachedCount
{
get { return 0; }
} }
#endregion #endregion