summaryrefslogtreecommitdiffstats
path: root/src/CBot/TestCBot/mp1.txt
blob: 599cfc46b0b69f79272f341d6cbd3bc50e4c1ddf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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);
	
}