mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 15:28:29 +08:00
9 lines
251 B
TypeScript
9 lines
251 B
TypeScript
![]() |
import { observable, IObservableArray } from "mobx";
|
||
|
import { HuntMethod } from "../domain";
|
||
|
|
||
|
class HuntMethodStore {
|
||
|
@observable methods: IObservableArray<HuntMethod> = observable.array();
|
||
|
}
|
||
|
|
||
|
export const huntMethodStore = new HuntMethodStore();
|