SharedVRCStuff/AAC/AACCore/Template/Template.cs
Lillith Rose 1d7052a258 Bring in AAC!
project ive been working on for a while, just felt confident enough to move it here
2025-12-09 21:40:28 -05:00

23 lines
No EOL
610 B
C#

using gay.lilyy.aaccore;
using UnityEditor;
namespace gay.lilyy.avatarname.version.aac {
[InitializeOnLoad]
public class Template : LayerGroup
{
// remove when ready for uploaded
public override bool experimental => true;
private static readonly Template _instance = new();
static Template() {}
public override string DisplayName => "Template";
public override string SystemName => "template";
public override void Run(AACAssets assets)
{
Logger.LogInfo("LayerGroup Template.Run() Called!");
}
}
}