kora-bot/Source/CPlayer.cpp
2023-04-10 18:31:02 -05:00

14 lines
217 B
C++

#include "CPlayer.h"
CPlayer::CPlayer()
{
}
CPlayer::CPlayer(BWAPI::Player player)
{
this->gasLost = 0;
this->gasSpent = 0;
this->mineralsLost = 0;
this->mineralsSpent = 0;
this->player = player;
}