mirror of
https://github.com/thepaperpilot/Planar-Pioneers.git
synced 2024-12-01 12:22:03 +00:00
14 lines
308 B
TypeScript
14 lines
308 B
TypeScript
import { shallowReactive } from "vue";
|
|
|
|
export interface Transient {
|
|
lastTenTicks: number[];
|
|
hasNaN: boolean;
|
|
NaNPath?: string[];
|
|
NaNReceiver?: Record<string, unknown>;
|
|
}
|
|
|
|
export default window.state = shallowReactive<Transient>({
|
|
lastTenTicks: [],
|
|
hasNaN: false,
|
|
NaNPath: []
|
|
});
|