コード例 #1
0
ファイル: GameManager.cs プロジェクト: filthmancer/greatgrand
    public void SetTargetGrand(GreatGrand g)
    {
        if (g != null)
        {
            if (TargetGrand != null)
            {
                TargetGrand.Release(InputPos);
            }
            else
            {
                g.Tap(InputPos);
            }
        }

        UI.SetGrandUI(g);
        TargetGrand = g;
    }