MayHeCome/Assets/Exoa/Common/Packages/UIElements/Editor/UnityEngine.UIElements.Expansions/Footer.cs

27 lines
514 B
C#
Raw Normal View History

2024-12-18 09:55:34 +00:00
using System;
namespace UnityEngine.UIElements.Expansions
{
public class Footer : VisualElement
{
public new class UxmlFactory : UxmlFactory<Footer, VisualElement.UxmlTraits>
{
internal const string ElementName = "Footer";
internal const string UxmlNamespace = "UnityEngine.UIElements";
public override string uxmlName
{
get
{
return "Footer";
}
}
public override string uxmlQualifiedName
{
get
{
return "UnityEngine.UIElements.Footer";
}
}
}
}
}