namespace EcsRx.Plugins.ReactiveSystems.Systems
{
public interface IReactToGroupExSystem : IReactToGroupSystem
{
///
/// Triggered before the group is processed
///
void BeforeProcessing();
///
/// Triggered after the group is processed
///
void AfterProcessing();
}
}