colobot-data/ai/tproc1.txt

15 lines
165 B
Plaintext

extern void object::Example( )
{
Square(15);
Square(25);
}
void object::Square(float length)
{
for ( int i=0 ; i<4 ; i=i+1 )
{
move(length);
turn(90);
}
}