ds4/src/module/common/common-data.ts
2021-01-11 00:55:49 +01:00

15 lines
237 B
TypeScript

export interface ModifiableData<T> {
base: T;
mod: T;
total?: T;
}
export interface ResourceData<T> extends ModifiableData<T> {
value: T;
max?: T;
}
export interface UsableResource<T> {
total: T;
used: T;
}