colobot/test/cbot/scenarios/solution.txt

13 lines
203 B
Plaintext

extern void object::Solution( )
{
show ( "Solution " + Position );
Carré(15);
Carré(25);
}
void object::Carré(float côté)
{
show ( "Carré " + Position );
Move(côté);
Turn(-90);
}