Skip to content

Commit 89555b4

Browse files
authored
fix: remove ts types in js example system in part base (#93)
1 parent 98dd5c9 commit 89555b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libs/part-base/files/js/__part__/systems/example.system.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import { ExampleComponent } from "../components/example.component";
1212
* @param {Registry} registry - ECS registry instance
1313
* @param {Context} ctx - Nanoforge <%= part %> instance
1414
*/
15-
export const exampleSystem = (registry: Registry, ctx: Context) => {
15+
export const exampleSystem = (registry, ctx) => {
1616
const entities = registry.getZipper([ExampleComponent]);
1717

1818
entities.forEach((entity) => {

0 commit comments

Comments
 (0)