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.

IContextNotifer.cs 333B

9 years ago
9 years ago
1234567891011
  1. namespace Svelto.Context
  2. {
  3. public interface IContextNotifer
  4. {
  5. void NotifyFrameworkInitialized();
  6. void NotifyFrameworkDeinitialized();
  7. void AddFrameworkInitializationListener(IWaitForFrameworkInitialization obj);
  8. void AddFrameworkDestructionListener(IWaitForFrameworkDestruction obj);
  9. }
  10. }