コード例 #1
0
ファイル: Computer.cpp プロジェクト: Banbury/starshatter-open
Computer::Computer(const Computer& c)
: System(c)
{
    Mount(c);
    SetAbbreviation(c.Abbreviation());
    power_flags = POWER_WATTS | POWER_CRITICAL;

    if (subtype == FLIGHT) {
        crit_level = -1.0f;
    }
}