
#include "defines.txt"

if (new_room) {
  load.pic(room_no);
  draw.pic(room_no);
  discard.pic(room_no);
  set.horizon(50);

  show.pic();

  animate.obj(o1);
  load.view(8);
  set.view(o1,8);
  set.loop(o1,0);
  set.cel(o1,0);
  position(o1,64,35);
  set.priority(o1,4);
  ignore.objs(o1);
  v255=2;
  cycle.time(o1,v255);
  draw(o1);

  move.obj(o1,64,167,2,f16);

  reset(f30);
}

if (said("look")) {
  print("You are falling through Dead Space, the nothingness outside the space-time continuum. Scenery's not up to much.");
}

if(isset(f16)) {
  reset(f16);
  new.room(6);
}

return();

