示例#1
0
文件: Npc.php 项目: reillo/ninjawars
 public function __construct($content)
 {
     if (is_string($content) && trim($content)) {
         NpcFactory::fleshOut($content, $this);
     } else {
         NpcFactory::fleshOutFromData($content, $this);
     }
 }