18 lines
349 B
C#
18 lines
349 B
C#
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> { }
|
|
}
|
|
} |