CabinGame/Program/src/Components/human.ts
Ronja b83024ded6 different UI for player inspection and adventure planning
also tons of tiny linter changes I guess
2020-04-24 15:01:39 +02:00

12 lines
231 B
TypeScript

import { Component, Entity } from "ecsy"
// Door component
export class Human extends Component {
diaryEntries: Entity[]
adventureCount = 0
reset() {
this.diaryEntries = []
this.adventureCount = 0
}
}