using UnityEngine.UIElements;

namespace GameCreator.Editor.Common
{
    public class SpaceSmallest : VisualElement
    {
        public SpaceSmallest()
        {
            this.style.height = new StyleLength(2);
        }
    }
}