blob: 696c6b6a9b9966d0c7a5e1cba467ef24c961023b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#include "interfacegats.h"
#include "smlnode.h"
#include "smlrendererhtml.h"
#include <bu/plugger.h>
#include <bu/sio.h>
using namespace Bu;
PluginInterface3( plugin_interface_gats, gats, InterfaceGats,
Interface, "Mike Buland", 1, 0 );
InterfaceGats::InterfaceGats()
{
}
InterfaceGats::~InterfaceGats()
{
}
void InterfaceGats::run( class Game *pGame )
{
}
void InterfaceGats::display( const SmlNode *pSml )
{
SmlRendererHtml rend;
rend.render( sio, pSml );
}
|