UNPKG

isaac-typescript-definitions

Version:

TypeScript definitions for The Binding of Isaac: Repentance.

10 lines (9 loc) 238 B
/** * Matches the `ItemConfig.CHARGE_` members of the `ItemConfig` class. In IsaacScript, we * reimplement this as an enum instead, since it is cleaner. */ export enum ItemConfigChargeType { NORMAL = 0, TIMED = 1, SPECIAL = 2, }