IHandle.cs 225 B

1234567891011
  1. using BansheeEngine;
  2. namespace BansheeEditor
  3. {
  4. public abstract class IHandle
  5. {
  6. protected abstract void Update();
  7. protected abstract void Response();
  8. protected abstract void Draw();
  9. }
  10. }