You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
464 B
30 lines
464 B
9 years ago
|
#pragma once
|
||
|
#include <SFML/System/Vector2.hpp>
|
||
|
#include <vector>
|
||
|
|
||
|
class Node {
|
||
|
public:
|
||
9 years ago
|
static const int x_bound = 300;
|
||
|
static const int y_bound = 300;
|
||
9 years ago
|
|
||
|
Node(sf::Vector2i position_);
|
||
|
~Node();
|
||
|
|
||
|
void Revive();
|
||
9 years ago
|
int CurrentState();
|
||
9 years ago
|
void ShiftState();
|
||
|
void Update(std::vector<Node> *node_vec);
|
||
|
|
||
|
private:
|
||
|
|
||
|
sf::Vector2i linear_to_multi(int position_);
|
||
|
int multi_to_linear(sf::Vector2i position);
|
||
9 years ago
|
|
||
9 years ago
|
sf::Vector2i position;
|
||
9 years ago
|
int curr_state;
|
||
|
int next_state;
|
||
9 years ago
|
|
||
|
|
||
9 years ago
|
};
|
||
|
|