mirror of https://github.com/bsnes-emu/bsnes.git
14 lines
232 B
C++
14 lines
232 B
C++
|
namespace phoenix {
|
||
|
|
||
|
struct pAction : public pObject {
|
||
|
Action &action;
|
||
|
|
||
|
void setEnabled(bool enabled);
|
||
|
void setVisible(bool visible);
|
||
|
|
||
|
pAction(Action &action) : pObject(action), action(action) {}
|
||
|
void constructor();
|
||
|
};
|
||
|
|
||
|
}
|