UNPKG

isaacscript-common

Version:

Helper functions and features for IsaacScript mods.

13 lines (12 loc) 296 B
/** * A collection of the four sprites necessary in order to render a charge bar. * * This is used in the `newChargeBarSprites` and related helper functions. */ export interface ChargeBarSprites { back: Sprite; meter: Sprite; meterBattery: Sprite; lines: Sprite; maxCharges: int; }