Initial Commit

Not a working build, but I wanted to get this on my github.
This commit is contained in:
Dalton 2019-03-19 12:06:46 -07:00
parent 493b903c5b
commit 2aa514168b
7 changed files with 551 additions and 1 deletions

11
data/enums/playerdata.ts Normal file
View file

@ -0,0 +1,11 @@
// Generated by https://quicktype.io
export interface player {
name: string;
race: string;
class: string;
level: number;
nuts: number;
dm: boolean;
dm_points: number;
}