B2S.Server Plugin Interface
Interface library for B2S.Server plugins
Go to:
Overview 
 All Classes Namespaces Files Functions Properties Pages
IDirectPlugin.cs
Go to the documentation of this file.
1 
2 namespace B2SServerPluginInterface
3 {
11  public interface IDirectPlugin
12  {
19  void PluginInit(string TableFilename, string RomName = "");
20 
25  void PluginFinish();
26 
34  string Name { get; }
35 
43  void DataReceive(char TableElementTypeChar, int Number, int Value);
44 
45 
46  }
47 
48 }