?? globals.php
字號:
<?php/*** Netlands World Server is the coordinator of the VR in the Netlands Project* Copyright (C) 2002 Ricard Pillosu* * This program is free software; you can redistribute it and/or* modify it under the terms of the GNU General Public License* as published by the Free Software Foundation; either version 2* of the License, or (at your option) any later version.* * This program is distributed in the hope that it will be useful,* but WITHOUT ANY WARRANTY; without even the implied warranty of* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the* GNU General Public License for more details.* * You should have received a copy of the GNU General Public License* along with this program; if not, write to the Free Software* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.*//* vim: set expandtab tabstop=4 shiftwidth=4 */// All entity related classesrequire_once($config['dirs']['inc'].'class_entity_list.php');require_once($config['dirs']['inc'].'class_entity.php');require_once($config['dirs']['inc'].'class_character.php');require_once($config['dirs']['inc'].'class_door.php');require_once($config['dirs']['inc'].'class_objekt.php');require_once($config['dirs']['inc'].'class_room.php');require_once($config['dirs']['inc'].'class_area.php');// All users/connections classesrequire_once($config['dirs']['common_inc'].'class_connection.php');require_once($config['dirs']['common_inc'].'class_user.php');require_once($config['dirs']['common_inc'].'class_user_list.php');require_once($config['dirs']['common_inc'].'access_levels.php');/*** @var object All things in our world are */$entities = &new entity_list($config['dirs']['dat']);/*** @var array List of references to all active connections (obj connection)*/$connections = array();/*** @var array List of references to all users logged and playing (obj user)*/$users = &new user_list($config['dirs']['dat'].'users/');?>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -