diff --git a/src/features/decorators/common.ts b/src/features/decorators/common.ts index d308390..e23b9f0 100644 --- a/src/features/decorators/common.ts +++ b/src/features/decorators/common.ts @@ -2,8 +2,6 @@ import { Replace, OptionsObject } from "../feature"; import { Computable, GetComputableType, processComputable, ProcessedComputable } from "util/computed"; import { Persistent, State } from "game/persistence"; -/*----====----*/ - export type Decorator = { getPersistentData?(): Record>; preConstruct?(feature: OptionsObject): void; @@ -11,9 +9,6 @@ export type Decorator): Partial> } -/*----====----*/ - -// #region Effect Decorator export interface EffectFeatureOptions { effect: Computable; } @@ -43,7 +38,4 @@ export const effectDecorator: Decorator