feat: 场景

This commit is contained in:
m0_75251201
2025-11-04 17:05:34 +08:00
parent 0206a83f56
commit 5d69efbc3f
84 changed files with 1406 additions and 21 deletions

16
Theme/ModBehaviour.cs Normal file
View File

@@ -0,0 +1,16 @@
using System;
namespace Theme
{
public class ModBehaviour:Duckov.Modding.ModBehaviour
{
protected override void OnAfterSetup()
{
base.OnAfterSetup();
}
protected override void OnBeforeDeactivate()
{
base.OnBeforeDeactivate();
}
}
}