game2006api/webapp/mt/LootConfig.php
hujiabin 358f127b0c 1
2024-02-26 16:35:11 +08:00

24 lines
406 B
PHP

<?php
namespace mt;
class LootConfig
{
public static function find($id){
return getXVal(self::getMetaList(), $id, null);
}
protected static function getMetaList()
{
if (!self::$metaList) {
self::$metaList = getMetaTable('lootConfig@lootConfig.php');
}
return self::$metaList;
}
protected static $metaList;
}