1
This commit is contained in:
18
Assets/BITKit/Unity/Scripts/UX/Library/CustomButton.cs
Normal file
18
Assets/BITKit/Unity/Scripts/UX/Library/CustomButton.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
using UnityEngine.UIElements;
|
||||
|
||||
namespace BITKit.UX
|
||||
{
|
||||
public class CustomButton : Button
|
||||
{
|
||||
public new class UxmlTraits : Button.UxmlTraits
|
||||
{
|
||||
}
|
||||
public CustomButton() : base()
|
||||
{
|
||||
}
|
||||
public new class UxmlFactory : UxmlFactory<CustomButton, UxmlTraits> { }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user