Skip to content

Commit

Permalink
remove soul module
Browse files Browse the repository at this point in the history
  • Loading branch information
Greegko committed Jun 10, 2023
1 parent 8e597a9 commit 66ea51b
Show file tree
Hide file tree
Showing 10 changed files with 2 additions and 28 deletions.
1 change: 0 additions & 1 deletion packages/core/src/features/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
export * from "./soul";
export * from "./unit";
export * from "./battle";
export * from "./party";
Expand Down
2 changes: 0 additions & 2 deletions packages/core/src/features/soul/index.ts

This file was deleted.

3 changes: 0 additions & 3 deletions packages/core/src/features/soul/soul.module.ts

This file was deleted.

5 changes: 0 additions & 5 deletions packages/core/src/features/soul/tsconfig.json

This file was deleted.

1 change: 0 additions & 1 deletion packages/core/src/features/soul/types/index.ts

This file was deleted.

7 changes: 0 additions & 7 deletions packages/core/src/features/soul/types/resources.ts

This file was deleted.

8 changes: 1 addition & 7 deletions packages/core/src/features/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
{
"extends": "../../tsconfig-base.json",
"include": ["./index.ts"],
"references": [
{ "path": "./soul" },
{ "path": "./unit" },
{ "path": "./battle" },
{ "path": "./party" },
{ "path": "./activity" }
]
"references": [{ "path": "./unit" }, { "path": "./battle" }, { "path": "./party" }, { "path": "./activity" }]
}
1 change: 0 additions & 1 deletion packages/core/src/game/create-game-instance.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ const coreModules = [
features.activityModule,
features.partyModule,
features.battleModule,
features.soulModule,
features.unitModule,
];

Expand Down
1 change: 1 addition & 0 deletions packages/core/src/models/resource.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export interface Resource {
gold?: number;
soul?: number;
}
1 change: 0 additions & 1 deletion packages/core/src/modules/village/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
// Dependencies
import "@features/battle";
import "@features/soul";

export * from "./village-store";
export * from "./village-stash-service";
Expand Down

0 comments on commit 66ea51b

Please sign in to comment.