#nullable enable using UnityEngine.UIElements; namespace UVC.UIToolkit { /// /// 단순 클릭 동작의 툴바 버튼 컴포넌트입니다. /// [UxmlElement] public partial class UTKToolBarStandardButton : UTKToolBarButtonBase { /// /// UTKToolBarStandardButton의 새 인스턴스를 초기화합니다. /// public UTKToolBarStandardButton() : base() { _uxmlPath = "UIToolkit/ToolBar/UTKToolBarButton"; _ussPath = "UIToolkit/ToolBar/UTKToolBarButtonUss"; CreateUI(); } } }