Messenger/Versions/Less Closed Beta/v5.0/MSGer.tk/IScript.cs
2015-07-06 13:04:54 +02:00

14 lines
242 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MSGer.tk
{
public interface IScript
{
void Load();
void Unload();
}
}