game2006api/webapp/mt/DressAttribute.php
2024-07-18 11:21:30 +08:00

20 lines
408 B
PHP

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