kora-bot/Source/PlayerAssessment.h

20 lines
472 B
C
Raw Normal View History

2023-04-10 23:31:02 +00:00
#pragma once
#include <BWAPI.h>
#include "CBase.h"
#include "CUnit.h"
#include "Macro.h"
#include "Util.h"
using namespace BWAPI;
class PlayerAssessment
{
public:
// determine what a player has, and what they can do with it
static int estimateBaseMinedMinerals(int playerID, CBase b);
static int estimateTotalGas(int playerID);
static int estimateTotalMinerals(int playerID);
static int estimateUnitCount(int playerID, BWAPI::UnitType unit);
};