1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-18 13:15:24 +00:00
OpenDiablo2/d2common/d2enum/item_armor_class.go
gravestench 589850a728
Removing TODO comments, making issues for them (#807)
* removed the rest of the magic number errors from d2game

* hotfix for bug i added in map engine test

* removed TODO's from d2mapengine/engine.go, added link to github issue

* removed TODO's and made issues and other minor lint work

* lint cleanup, mostly removing TODO's and putting links to their issues on github
2020-10-25 10:21:14 -04:00

10 lines
128 B
Go

package d2enum
type ArmorClass string
const (
ArmorClassLite = "lit"
ArmorClassMedium = "med"
ArmorClassHeavy = "hvy"
)