Files
PlanetFleet/source/core/console/addTechnologyCommand.h
T
2026-05-21 20:28:52 +03:00

19 lines
331 B
C++

#ifndef ADD_TECHNOLOGY_H
#define ADD_TECHNOLOGY_H
#include "abstractCommand.h"
namespace battleship{
class AddTechnologyCommand : public AbstractCommand{
public:
AddTechnologyCommand(std::string argsStr) : AbstractCommand(argsStr){}
void execute();
private:
void validate();
int playerId, techId;
};
}
#endif