mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 21:25:42 +12:00
20 lines
358 B
C#
20 lines
358 B
C#
namespace HISP.Modding
|
|
{
|
|
public interface IMod
|
|
{
|
|
public void OnModLoad();
|
|
public void OnModUnload();
|
|
public string ModName
|
|
{
|
|
get;
|
|
}
|
|
public string ModVersion
|
|
{
|
|
get;
|
|
}
|
|
public string ModId
|
|
{
|
|
get;
|
|
}
|
|
}
|
|
}
|