#pragma once namespace BWAPI { /// Contains enumeration of known latency values. /// @see Game::getLatency namespace Latency { /// Contains enumeration of known latency values. /// @see Game::getLatency enum Enum { SinglePlayer = 2, LanLow = 5, LanMedium = 7, LanHigh = 9, BattlenetLow = 14, BattlenetMedium = 19, BattlenetHigh = 24 }; } }