15 lines
197 B
C#
15 lines
197 B
C#
|
using System;
|
||
|
using MSGer.tk;
|
||
|
|
||
|
public class Test : IScript
|
||
|
{
|
||
|
public void Load()
|
||
|
{
|
||
|
Console.WriteLine("Script Loaded!");
|
||
|
}
|
||
|
public void Unload()
|
||
|
{
|
||
|
Console.WriteLine("Script Unloaded!");
|
||
|
}
|
||
|
}
|