16 lines
320 B
C#
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();
|
|
}
|
|
}
|