#include <acknex.h>
#include <default.c>
VIEW* test1 =
{
layer = 1;
size_x = 300;
size_y = 300;
flags = VISIBLE;
}
void main ()
{
ENTITY* ent;
level_load(0);
ent = ent_create("capsule.mdl",vector(100,30,0),NULL);
test1.genius = ent;
// After I pointed GENIUS to the *ent, it should not be visible
// in the test1, but for some reason this does not happen :(
ent.parent = ent_create("car_mini.mdl",vector(50,0,0),NULL);
vec_set(camera.x,vector(-100,42,0));// set position for camera
}