We should merge together

Code:
#include <acknex.h>

void doSomething (ENTITY* ent);

void main()
{
	fps_max = 60;
	level_load(NULL);
	
	ENTITY* ent=ent_create(CUBE_MDL,nullvector,NULL);
	
	doSomething(ent);
}

void doSomething (ENTITY* ent)
{
	while(1)
	{
		ent.pan+=time_step;

		wait(2+floor(random(10)));
	}
}