isaacscript-common
Version:
Helper functions and features for IsaacScript mods.
22 lines • 809 B
TypeScript
import type { TearFlag } from "isaac-typescript-definitions";
import type { PlayerStat } from "../enums/PlayerStat";
/**
* Contains every player stat along with its corresponding data type. For example, `StatType.DAMAGE`
* is a `float` type.
*/
export interface PlayerStats {
[]: float;
[]: float;
[]: float;
[]: float;
[]: float;
[]: float;
[]: float;
[]: float;
[]: BitFlags<TearFlag>;
[]: Color;
[]: boolean;
[]: float;
[]: Vector;
}
//# sourceMappingURL=PlayerStats.d.ts.map