Alright, I don't think I'm going to squeeze any more performance out of this. On to OpenCL

This commit is contained in:
2015-12-29 21:40:13 -08:00
parent e6f3bef05f
commit cc28558ccc
3 changed files with 25 additions and 71 deletions

View File

@@ -11,7 +11,7 @@ public:
~Node();
void Revive();
bool CurrentState();
int CurrentState();
void ShiftState();
void Update(std::vector<Node> *node_vec);
@@ -19,8 +19,9 @@ private:
sf::Vector2i linear_to_multi(int position_);
int multi_to_linear(sf::Vector2i position);
sf::Vector2i position;
bool curr_state;
bool next_state;
int curr_state;
int next_state;
};