Messenger/MSGer.tk/Scripts/IScript.cs
2015-07-06 13:04:54 +02:00

20 lines
413 B
C#

using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MSGer.tk
{
public interface IScript
{
void Load();
void Unload();
}
public interface IScriptTheme
{ //2015.07.05.
void SkinThis(Type controltype, ThemeControl control, Graphics graphics);
}
}