mirror of
https://github.com/PCSX2/pcsx2.git
synced 2025-04-02 10:52:54 -04:00
git-svn-id: http://pcsx2.googlecode.com/svn/branches/pcsx2_0.9.2@159 96395faa-99c1-11dd-bbfe-3dabce05a288
31 lines
481 B
C++
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
|