Files
BattleCap/include/Infantry.h
ParkSuMin ee925cebc9 Highlight selected unit
Debug information about selected unit
2025-07-07 23:34:42 +03:00

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();
};