2020-04-24 13:01:39 +00:00
|
|
|
import { Component, Entity } from "ecsy"
|
2020-02-17 11:56:41 +00:00
|
|
|
|
|
|
|
|
// Door component
|
|
|
|
|
export class Human extends Component {
|
2020-04-24 13:01:39 +00:00
|
|
|
diaryEntries: Entity[]
|
|
|
|
|
adventureCount = 0
|
2020-02-17 11:56:41 +00:00
|
|
|
|
|
|
|
|
reset() {
|
2020-04-24 13:01:39 +00:00
|
|
|
this.diaryEntries = []
|
|
|
|
|
this.adventureCount = 0
|
2020-02-17 11:56:41 +00:00
|
|
|
}
|
2020-04-24 13:01:39 +00:00
|
|
|
}
|