DbgCustomInspector.cs 394 B

12345678910111213141516171819
  1. using System;
  2. using BansheeEngine;
  3. namespace BansheeEditor
  4. {
  5. [CustomInspector(typeof(Camera))]
  6. public class DbgCustomInspector : Inspector
  7. {
  8. internal override bool Refresh()
  9. {
  10. throw new NotImplementedException();
  11. }
  12. internal override int GetOptimalHeight()
  13. {
  14. throw new NotImplementedException();
  15. }
  16. }
  17. }