File

src/app/types/tabletopCharacter.ts

Properties

character
character: any
characterID
characterID: string
currentHealth
currentHealth: number
gameOwnerID
gameOwnerID: string
id
id: string
location
location: { x: number; y: number; }
playerID
playerID: string
tabletopID
tabletopID: string
import { PlayerCharacter } from 'app/types/playerCharacter';
export class TabletopCharacter {

    id?: string
    tabletopID: string;
    gameOwnerID: string
    playerID: string
    characterID: string
    
    character?: PlayerCharacter

    currentHealth: number
    location: {
        x: number
        y: number
    }
}

results matching ""

    No results matching ""