Highlight selected unit
Debug information about selected unit
This commit is contained in:
@@ -1,11 +1,10 @@
|
||||
#pragma once
|
||||
|
||||
class Infantry {
|
||||
private:
|
||||
int x;
|
||||
int y;
|
||||
public:
|
||||
Infantry(int _x, int _y) : x(_x), y(_y) {};
|
||||
void get_coordinates();
|
||||
std::pair<int,int> get_coordinates();
|
||||
void attack();
|
||||
};
|
||||
Reference in New Issue
Block a user