コード例 #1
0
void Troop::Set(const Troop & t)
{
    SetMonster(t.GetMonster());
    SetCount(t.GetCount());
}
コード例 #2
0
ファイル: army_troop.cpp プロジェクト: asimonov-im/fheroes2
void Army::Troop::Set(const Monster & m, u32 c)
{
    SetMonster(m);
    SetCount(c);
}