Housekeeping.

This commit is contained in:
2024-11-21 16:35:36 -05:00
parent 257318926d
commit b3a8ef8c0f
2 changed files with 14 additions and 3 deletions

View File

@@ -17,6 +17,13 @@ func NewHolster() *Holster {
return holster
}
func (h *Holster) SetActiveWeapon(wt gamedata.WeaponType) {
_, ok := h.guns[wt]
if ok {
h.activewp = wt
}
}
func (h *Holster) GetActiveWeapon() Weapon {
return h.guns[h.activewp]
}