(self, parent)
| 62 | |
| 63 | class DmgPatternEntityEditor(EntityEditor): |
| 64 | def __init__(self, parent): |
| 65 | EntityEditor.__init__(self, parent, _t("Damage Profile")) |
| 66 | self.SetEditorValidator(DmgPatternNameValidator) |
| 67 | |
| 68 | def getEntitiesFromContext(self): |
| 69 | sDP = DamagePattern.getInstance() |
nothing calls this directly
no test coverage detected