changed file headers & added AUTHORS file
[PHP-P10.git] / BotLoader / Bot.class.php
1 <?php
2 /******************************* PHP-P10 v2 *****************************
3  * Copyright (C) 2011  Philipp Kreil (pk910)                            *
4  *                                                                      *
5  * This program is free software: you can redistribute it and/or modify *
6  * it under the terms of the GNU General Public License as published by *
7  * the Free Software Foundation, either version 3 of the License, or    *
8  * (at your option) any later version.                                  *
9  *                                                                      * 
10  * This program is distributed in the hope that it will be useful,      *
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
13  * GNU General Public License for more details.                         *
14  *                                                                      *
15  * You should have received a copy of the GNU General Public License    *
16  * along with this program. If not, see <http://www.gnu.org/licenses/>. *
17  *                                                                      *
18  ************************************************************************
19  * 
20  *  BotLoader/Bot.class.php
21  *
22  * bots' parent class.
23  *
24  */
25
26 class Bot {
27         
28         public function load($uplink, $oldDatas = null) {
29         
30         }
31         
32         public function unload($rehash = false) {
33         
34         }
35         
36         public function loop() {
37         
38         }
39         
40         public function writeDB() {
41                 
42         }
43         
44         public function readDB($value) {
45         
46         }
47
48 }
49
50 ?>