10 lines
165 B
C++
10 lines
165 B
C++
#pragma once
|
|
class Infantry {
|
|
private:
|
|
int x;
|
|
int y;
|
|
public:
|
|
Infantry(int _x, int _y) : x(_x), y(_y) {};
|
|
std::pair<int,int> get_coordinates();
|
|
void attack();
|
|
}; |