kreta/Framework/Collections/IAssociatedEntityCollection.cs
2024-03-13 00:33:46 +01:00

16 lines
320 B
C#

using System.Collections;
using Kreta.Framework.Entities;
namespace Kreta.Framework.Collections
{
public interface IAssociatedEntityCollection : IEntityCollection, IEnumerable
{
void Remove(Entity entity);
void Delete(Entity entity);
void RemoveAll();
void Load();
}
}