pcsx2/cheatscpp.h
zerofrog df521ae24f 0.9.4 release
git-svn-id: http://pcsx2.googlecode.com/svn/branches/pcsx2_0.9.4@186 96395faa-99c1-11dd-bbfe-3dabce05a288
2007-11-11 02:55:00 +00:00

31 lines
481 B
C++

#ifndef CHEATSCPP_H_INCLUDED
#define CHEATSCPP_H_INCLUDED
class Group
{
public:
string title;
bool enabled;
int parentIndex;
Group(int nParent,bool nEnabled, string &nTitle);
};
class Patch
{
public:
string title;
int group;
bool enabled;
int patchIndex;
Patch(int patch, int grp, bool en, string &ttl);
Patch operator =(const Patch&p);
};
extern vector<Group> groups;
extern vector<Patch> patches;
#endif//CHEATSCPP_H_INCLUDED