SceneWindow.cs 414 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace BansheeEditor
  7. {
  8. internal sealed class SceneWindow : EditorWindow
  9. {
  10. internal SceneWindow()
  11. {
  12. }
  13. protected override void WindowResized(int width, int height)
  14. {
  15. base.WindowResized(width, height);
  16. }
  17. }
  18. }