Exemplo n.º 1
0
    //
    private void ViewLoaded()
    {
        var barabanCount = RevolverLogic.GetLoadedPatronsWithId();

        BulletCount.text = " ";
        foreach (var i in barabanCount)
        {
            BulletCount.text += (i + 1) + " ";
        }
        Barret.text = (RevolverLogic.GetCurrentBarrelId() + 1).ToString();
    }