﻿using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using HoloPlay;

namespace HoloPlay
{
    namespace Extras
    {
        public class ControlsTest : MonoBehaviour
        {
            void OnGUI()
            {
                GUI.skin.box.fontSize = 50;

                var buttons = new ButtonType[]{
                ButtonType.ONE,
                ButtonType.TWO,
                ButtonType.THREE,
                ButtonType.FOUR,
                ButtonType.HOME
            };

                foreach (var b in buttons)
                {
                    if (Buttons.GetButtonUp(b))
                        GUILayout.Box("HP Button " + b.ToString());
                }
            }
        }
    }
}