summaryrefslogtreecommitdiffstats
path: root/src/CBot/TestCBot/mp2.txt
blob: 1c2972c96db81e02f26790b176adaa38989324a8 (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
26
27
28
class Guepet
{
	
	float a;
	float b;
	
	void init()
	{
		a = 12.34;
		b = 56.78;
		
		object x = radar(123);
		show("radar "+x.position.x);
		show("C'est fait");
	}
	
	
}

extern void object::Fourmi6()
{
	Guepet guepe=new Guepet();
	
	guepe.init();
	
	show("test "+guepe.a+" "+guepe.b);
	
}