Files
DuckovMods/Theme/ModBehaviour.cs

18 lines
331 B
C#
Raw Permalink Normal View History

2025-11-04 17:05:34 +08:00
using System;
2025-11-05 21:34:21 +08:00
using System.Collections.Generic;
using System.IO;
using System.Text;
using UnityEngine;
2025-11-04 17:05:34 +08:00
namespace Theme
{
2025-11-05 21:34:21 +08:00
public class ModBehaviour : Duckov.Modding.ModBehaviour
2025-11-04 17:05:34 +08:00
{
2025-11-05 21:34:21 +08:00
private StringBuilder _outputStringBuilder;
2025-11-04 17:05:34 +08:00
protected override void OnAfterSetup()
{
2025-11-05 21:34:21 +08:00
2025-11-04 17:05:34 +08:00
}
2025-11-05 21:34:21 +08:00
2025-11-04 17:05:34 +08:00
}
}