mirror of
https://github.com/soarqin/DSP_Mods.git
synced 2026-08-05 10:00:21 +08:00
11 lines
174 B
C#
11 lines
174 B
C#
namespace UXAssist.Common.ModFeatures;
|
|
|
|
public interface IModFeature
|
|
{
|
|
void Init();
|
|
void Start();
|
|
void Uninit();
|
|
void OnInputUpdate();
|
|
void OnUpdate();
|
|
}
|