summaryrefslogtreecommitdiffstats
path: root/src/CBot/tests/scenarios/mp1.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/CBot/tests/scenarios/mp1.txt')
-rw-r--r--src/CBot/tests/scenarios/mp1.txt25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/CBot/tests/scenarios/mp1.txt b/src/CBot/tests/scenarios/mp1.txt
deleted file mode 100644
index 599cfc4..0000000
--- a/src/CBot/tests/scenarios/mp1.txt
+++ /dev/null
@@ -1,25 +0,0 @@
-class Guepet
-{
-
- float a;
- float b;
-
- void init()
- {
- a = 12.34;
- b = 56.78;
- }
-
-
-}
-
-extern void object::Fourmi6()
-{
- Guepet guepe =new Guepet();
-
- guepe.init();
-
-
- show("test "+guepe.a+" "+guepe.b);
-
-}