AssemblyCSharp.BatonController.HandleButtons C# (CSharp) Method

HandleButtons() public method

public HandleButtons ( ) : void
return void
        void HandleButtons()
        {
            int button_bits = stream.getButtonStatus(label);

            if ((button_bits & A) > 0)
            {
                //A PRESSED
            }
            else
            {
                //A RELEASED
            }
            if ((button_bits & B) > 0)
            {
                //B PRESSED
            }
            else
            {
                //B RELEASED
            }
        }