Skip to content
Snippets Groups Projects
State.h 421 B
Newer Older
#ifndef _STATE // if this class hasn't been defined, the program can define it
#define _STATE

#include "ofMain.h"
Louis James's avatar
Louis James committed
public:
        //cout << "State Constructor" << endl;
        test1 = 400;
        test2 = 400;
    }
    int test1;
    int test2;
    int num_colours=5;
    vector<ofVec2f> points;
    int get_test1(){ return test1;}
Louis James's avatar
Louis James committed
#endif