source: titan/plugins/betarobot/betarobot.c @ 43326

Last change on this file since 43326 was 23287, checked in by nit, 11 years ago

[titan] add betaronot plugin

File size: 671 bytes
Line 
1#include "../titan/struct.h"
2#include "../titan/debug.h"
3#include "../titan/header.h"
4#include "betarobot.h"
5
6char pluginname[] = "Beta Robot";
7char plugindesc[] = "Beta Robot";
8char pluginpic[] = "%pluginpath%/betarobot/plugin.png";
9
10int pluginaktiv = 0;
11int pluginversion = PLUGINVERSION;
12struct skin* pluginmenu = NULL;
13int pluginflag = 0;
14
15//wird beim laden ausgefuehrt
16void init(void)
17{
18        pluginaktiv = 1;
19 
20        debug(10, "BetaRobot Plugin loadet !!!");
21}
22
23//wird beim entladen ausgefuehrt
24void deinit(void)
25{
26        pluginaktiv = 0;
27        debug(10, "BetaRobot Plugin removed !!!");
28}
29
30//wird in der Pluginverwaltung bzw Menue ausfeguehrt
31void start(void)
32{
33        screenbetarobot();
34}
Note: See TracBrowser for help on using the repository browser.