Ballz.GameSession.Logic.WeaponControl.Update C# (CSharp) 메소드

Update() 공개 메소드

Updates the weapon state and performs weapon actions.
public Update ( float elapsedSeconds, bool>.Dictionary keysPressed, bool &turnEndindActionHappened, bool &canSwitchWeapon ) : void
elapsedSeconds float
keysPressed bool>.Dictionary
turnEndindActionHappened bool
canSwitchWeapon bool
리턴 void
        public virtual void Update(float elapsedSeconds, Dictionary<InputMessage.MessageType, bool> keysPressed, out bool turnEndindActionHappened, out bool canSwitchWeapon)
        {
            turnEndindActionHappened = false;
            canSwitchWeapon = true;
        }