This repository has been archived on 2024-07-18. You can view files and clone it, but cannot push or open issues or pull requests.
lwb5/scripts/game/main/ticks/mark/library.inc

13 lines
224 B
PHP
Raw Normal View History

2016-01-10 11:01:49 +01:00
<?php
// Empty tick, to be run every 5 seconds. Should make the scheduler
// react faster if there are no ticks.
class main_ticks_mark_library {
public function __construct($lib) { }
public function runTick() { }
}
?>