mirror of
https://github.com/martindampier/draw-steel-retainer.git
synced 2026-07-22 05:44:15 +00:00
12 lines
246 B
TypeScript
12 lines
246 B
TypeScript
import Creature from "./Models/Creature";
|
|
|
|
export interface RetainerSettings {
|
|
mySetting: string;
|
|
playerCharacters: Creature[];
|
|
}
|
|
|
|
export const DEFAULT_SETTINGS: RetainerSettings = {
|
|
mySetting: 'default',
|
|
playerCharacters: [],
|
|
}
|
|
|