1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-07-23 22:59:05 +02:00
TweetDuck/lib/TweetLib.Core/Browser/IScriptExecutor.cs

8 lines
236 B
C#

namespace TweetLib.Core.Browser{
public interface IScriptExecutor{
void RunFunction(string name, params object[] args);
void RunScript(string identifier, string script);
bool RunFile(string file);
}
}