File

src/app/types/tabletop.ts

Properties

actions
actions: Action[]
characters
characters: TabletopCharacter[]
gameOwnerID
gameOwnerID: string
height
height: number
id
id: string
width
width: number
import { TabletopCharacter } from './tabletopCharacter';
import { Action } from './action';

export class Tabletop {
    id?: string;
    gameOwnerID: string;
    
    width: number;
    height: number;
    
    characters?: TabletopCharacter[];
    actions?: Action[];
}

results matching ""

    No results matching ""