コード例 #1
0
ファイル: LineItem.cpp プロジェクト: bitfighter/bitfighter
string LineItem::toLevelCode() const
{
   string out = string(appendId(getClassName())) + " " + itos(getTeam()) + " " + itos(getWidth());

   if(mGlobal)
      out += " Global";

   out += " " + geomToLevelCode();

   return out;
}
コード例 #2
0
ファイル: NexusGame.cpp プロジェクト: AnsonX10/bitfighter
string NexusZone::toLevelCode() const
{
    return string(appendId(getClassName())) + " " + geomToLevelCode();
}