phantasmal-world/src/stores/HuntMethodStore.ts

9 lines
251 B
TypeScript
Raw Normal View History

import { observable, IObservableArray } from "mobx";
import { HuntMethod } from "../domain";
class HuntMethodStore {
@observable methods: IObservableArray<HuntMethod> = observable.array();
}
export const huntMethodStore = new HuntMethodStore();