]> git.tdb.fi Git - libs/game.git/blob - tools/builder-plugin/gameplugin.h
Create a builder plugin for the setup generator tool
[libs/game.git] / tools / builder-plugin / gameplugin.h
1 #ifndef GAMEPLUGIN_H_
2 #define GAMEPLUGIN_H_
3
4 #include <msp/builder/plugin.h>
5
6 class GamePlugin: public Plugin
7 {
8 public:
9         GamePlugin(Builder &b): Plugin(b) { }
10
11         void add_tools(Toolchain &, const Architecture &) const override;
12 };
13
14 #endif