Messenger/Versions/Less Closed Beta/v5.0/MSGer.tk/IScript.cs

15 lines
242 B
C#
Raw Normal View History

2015-07-06 11:04:54 +00:00
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();
}
}