Mirror of Svelto.ECS because we're a fan of it
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
212B

  1. namespace Svelto.Context
  2. {
  3. public interface ICompositionRoot
  4. {
  5. void OnContextCreated(UnityContext contextHolder);
  6. void OnContextInitialized();
  7. void OnContextDestroyed();
  8. }
  9. }