X-Git-Url: http://git.pk910.de/?p=PHP-P10.git;a=blobdiff_plain;f=BotLoader%2FBot.class.php;h=c24e51e8248033fd19f90ba5fca6324fc9f800e1;hp=b617193cfac36a748d9b2b4aee7a88e597c0d5ac;hb=7f51193ddac01b0540000c756c50167ff015e02a;hpb=0f30e96ae37491aee19e72b89cc54a6798d1f254 diff --git a/BotLoader/Bot.class.php b/BotLoader/Bot.class.php index b617193..c24e51e 100644 --- a/BotLoader/Bot.class.php +++ b/BotLoader/Bot.class.php @@ -1,12 +1,12 @@ . * * * ************************************************************************ - * + * * BotLoader/Bot.class.php * * bots' parent class. @@ -24,27 +24,35 @@ */ class Bot { - + private $db_section = NULL; + public function load($uplink, $oldDatas = null) { - + } - + public function unload($rehash = false) { - + } - + public function loop() { - + } - + public function writeDB() { - + } - + public function readDB($value) { - + } + public function getDBSection() { + return $this->db_section; + } + + public function setDBSection($section) { + $this->db_section = $section; + } } ?> \ No newline at end of file