<?php
/*
Play a Story
*/
class page extends pageParent {
public $template = 'play.html'; // default page
public $header = 'play_Header.inc'; //default header
public $footer = 'play_Footer.inc'; //default footer
public $op = 'start';
public function execute(){
$this->setError("There's a lot more to do before we let you play, thanks tho!");
}
}
?>