first commit
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using UnityEngine;
|
||||
|
||||
namespace UnityEditor
|
||||
{
|
||||
struct GUIGroupScope : IDisposable
|
||||
{
|
||||
public GUIGroupScope(Rect position)
|
||||
{
|
||||
GUI.BeginGroup(position);
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
GUI.EndGroup();
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user