2016-01-10 11:01:49 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class beta5_moving_library {
|
|
|
|
var $index = array (
|
|
|
|
'cloneObject',
|
|
|
|
'computeTrajectory',
|
|
|
|
'getLocation',
|
|
|
|
'getTrajectory',
|
|
|
|
'newObject',
|
|
|
|
'redirect',
|
|
|
|
'stop'
|
|
|
|
);
|
|
|
|
|
2024-12-31 10:42:58 +01:00
|
|
|
function __construct($lib) {
|
2016-01-10 11:01:49 +01:00
|
|
|
$this->lib = $lib;
|
|
|
|
$this->db = $this->lib->game->db;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|