Messenger/MSGer.tk/Scripts/IScript.cs

21 lines
463 B
C#
Raw Normal View History

2015-07-06 14:29:34 +00:00
using System; //Copyright (c) NorbiPeti 2015 - See LICENSE file
2015-07-06 11:04:54 +00:00
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);
}
}