Remove some stuff that was accidentally committed

This commit is contained in:
Jonas Kulla 2015-07-16 18:44:03 +02:00
parent 9a3dd2d554
commit 5aaeb0206c
1 changed files with 0 additions and 43 deletions

View File

@ -25,49 +25,6 @@
#include <string>
#include <vector>
struct TouchOverlay
{
std::string image;
struct Button
{
enum Shape
{
Rectangle,
Circle,
Triangle
};
std::string id;
std::string target;
Shape shape;
int x;
int y;
union
{
struct
{
int width;
int height;
} r;
struct
{
int radius;
} c;
struct
{
int x1, y1;
int x2, y2;
} t;
} u;
};
std::vector<Button> buttons;
};
struct Config
{
int rgssVersion;