isaacscript-common
Version:
Helper functions and features for IsaacScript mods.
13 lines • 352 B
TypeScript
/**
* 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;
}
//# sourceMappingURL=ChargeBarSprites.d.ts.map