(self, fittingView, params)
| 28 | name = "Ammo" |
| 29 | |
| 30 | def __init__(self, fittingView, params): |
| 31 | ViewColumn.__init__(self, fittingView) |
| 32 | self.mask = wx.LIST_MASK_IMAGE |
| 33 | self.imageId = fittingView.imageList.GetImageIndex("damagePattern_small", "gui") |
| 34 | self.bitmap = BitmapLoader.getBitmap("damagePattern_small", "gui") |
| 35 | |
| 36 | def getText(self, stuff): |
| 37 | if isinstance(stuff, Fighter): |
nothing calls this directly
no test coverage detected