game2006api/webapp/mt/Skill.php
aozhiwei f14a7e24dd 1
2021-11-25 19:03:09 +08:00

25 lines
381 B
PHP

<?php
namespace mt;
use phpcommon;
class Skill {
public static function get($id)
{
return getXVal(self::getMetaList(), $id);
}
protected static function getMetaList()
{
if (!self::$metaList) {
self::$metaList = getMetaTable('skill@skill.php');
}
return self::$metaList;
}
protected static $metaList;
}