summaryrefslogtreecommitdiff
path: root/ofAsterisk/src/Asterisk.h
diff options
context:
space:
mode:
authorComment <tim@gray.(none)>2012-12-04 14:53:44 +0000
committerComment <tim@gray.(none)>2012-12-04 14:53:44 +0000
commit7e99d4291172f4dadb59b81cf525817dd8a210e5 (patch)
tree75fb43c04330250a25f745228e59a30902d783d0 /ofAsterisk/src/Asterisk.h
parentf7bee21ada14851da8626a3784821ded25333fe6 (diff)
dress rehearsal version
Diffstat (limited to 'ofAsterisk/src/Asterisk.h')
-rwxr-xr-xofAsterisk/src/Asterisk.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/ofAsterisk/src/Asterisk.h b/ofAsterisk/src/Asterisk.h
index 3acdb6e..d3e3786 100755
--- a/ofAsterisk/src/Asterisk.h
+++ b/ofAsterisk/src/Asterisk.h
@@ -13,22 +13,24 @@
class Asterisk
{
public:
- Asterisk();
+ Asterisk(string passcode="1111");
virtual ~Asterisk();
void startGame();
void endGame(string score);
int update();
- void cmd(string s);
-
+ void requestStatus();
int state;
-
+
+ int queued;
protected:
+ void cmd(string s);
private:
int startTime;
FILE *file;
int filenum;
ofxUDPManager udpConnection;
string playerCode;
+
};
#endif // ASTERISK_H