lwb5-in-2025/scripts/game/beta5/moving/library.inc

21 lines
273 B
PHP
Raw Normal View History

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;
}
}
?>