remove accidentally included stuff from new bot

This commit is contained in:
jeefo 2016-01-07 18:52:02 +03:00
commit 9df1af4b92

View file

@ -1536,32 +1536,3 @@ int GetWeaponReturn (bool needString, const char *weaponAlias, int weaponIndex)
}
return -1; // no weapon was found return -1
}
class ISkyBotIf
{
public:
virtual int GetVersion () = 0;
};
class IEntity : public ISkyBotIf
{
public:
};
class IPlayer : public IEntity
{
public:
};
class IWeapon : public ISkyBotIf
{
public:
virtual IPlayer *GetOwner () = 0;
};
class IGame : public ISkyBotIf
{
public:
virtual bool IsBombPlanted () = 0;
virtual const Vector &GetBombPlantedOrigin () = 0;
};