Exemplo n.º 1
0
 public CursorsWindow(Rect rect, GUIContent content, GUIStyle style, params GUILayoutOption[] options)
     : base(rect, content, style)
 {
     Options       = options;
     ButtonContent = new GUIContent("Cursors");
     cursors       = new List <CursorInfo>();
     foreach (var cursor in DescriptorData.getCursorTypes())
     {
         cursors.Add(new CursorInfo(cursor));
     }
 }