Files
BattleCap/include/Infantry.h
ParkSuMin 7da1909c76 Debug information about positions of units
Random position for flag and enemy (function Random)
2025-07-07 17:42:31 +03:00

11 lines
152 B
C++

#pragma once
class Infantry {
private:
int x;
int y;
public:
Infantry(int _x, int _y) : x(_x), y(_y) {};
void get_coordinates();
void attack();
};