示例#1
0
    public static Decoy Add(int id, GameMgr gm, Vector3 pos)
    {
        Decoy d = parent.Add(pos.x, pos.y, pos.z);

        d.SetParam(id);

        d.SetGmaeMgr(gm);

        d.SetIsDeath(false);

        d.SetHp(3);

        return(d);
    }