mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-22 04:35:52 +12:00
Make commands more accurate
This commit is contained in:
parent
997be8573d
commit
55c0f29914
14 changed files with 415 additions and 342 deletions
20
HorseIsleServer/LibHISP/Modding/IMod.cs
Normal file
20
HorseIsleServer/LibHISP/Modding/IMod.cs
Normal file
|
@ -0,0 +1,20 @@
|
|||
namespace HISP.Modding
|
||||
{
|
||||
public interface IMod
|
||||
{
|
||||
public void OnModLoad();
|
||||
public void OnModUnload();
|
||||
public string ModName
|
||||
{
|
||||
get;
|
||||
}
|
||||
public string ModVersion
|
||||
{
|
||||
get;
|
||||
}
|
||||
public string ModId
|
||||
{
|
||||
get;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue