Entitas  0.40.0
Entitas is a super fast Entity Component System (ECS) Framework specifically made for C# and Unity
GroupEvent.cs
1 namespace Entitas {
2 
3  public enum GroupEvent : byte {
4  Added,
5  Removed,
6  AddedOrRemoved
7  }
8 }