summaryrefslogtreecommitdiffstats
path: root/src/CBot/CBot.h
diff options
context:
space:
mode:
authorZaba999 <zaba.marcin@gmail.com>2012-09-20 22:58:00 +0200
committerZaba999 <zaba.marcin@gmail.com>2012-09-20 22:58:00 +0200
commit191fdc614ed8022c145d3530f9d412e715ae37db (patch)
tree2813afe018c4e675bf6955e9324cdba297c76a51 /src/CBot/CBot.h
parent57d33d79ea570773d84ad81d4a61f50e079979ef (diff)
downloadcolobot-191fdc614ed8022c145d3530f9d412e715ae37db.tar.gz
colobot-191fdc614ed8022c145d3530f9d412e715ae37db.tar.bz2
colobot-191fdc614ed8022c145d3530f9d412e715ae37db.zip
changed paths for models and levels. Now it's possible to load level.
Diffstat (limited to 'src/CBot/CBot.h')
-rw-r--r--src/CBot/CBot.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/CBot/CBot.h b/src/CBot/CBot.h
index 53a5633..8886308 100644
--- a/src/CBot/CBot.h
+++ b/src/CBot/CBot.h
@@ -1009,13 +1009,14 @@ public:
// an instruction block { .... }
class CBotBlock : public CBotInstr
{
-private:
-
public:
static
CBotInstr* Compile(CBotToken* &p, CBotCStack* pStack, bool bLocal = true);
static
CBotInstr* CompileBlkOrInst(CBotToken* &p, CBotCStack* pStack, bool bLocal = false);
+private:
+ CBotBlock();
+ CBotBlock(const CBotBlock &);
};