From 7e289e7927767680f260231c3e2929fb2aa1d792 Mon Sep 17 00:00:00 2001 From: Piotr Dziwinski Date: Thu, 23 Jul 2015 20:48:35 +0200 Subject: [PATCH] Add missing forward declaration in CBotToken.h --- src/CBot/CBotToken.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/CBot/CBotToken.h b/src/CBot/CBotToken.h index d7897342..a3a4902e 100644 --- a/src/CBot/CBotToken.h +++ b/src/CBot/CBotToken.h @@ -37,6 +37,8 @@ #pragma once +class CBotToken; + extern bool IsOfType(CBotToken* &p, int type1, int type2 = -1); extern bool IsOfTypeList(CBotToken* &p, int type1, ...);