added temp enemy mover

This commit is contained in:
Martin
2022-11-14 16:35:47 +01:00
parent 279218b4c3
commit 3dd10f13ef
16 changed files with 212 additions and 23 deletions

View File

@@ -1,3 +1,4 @@
/* eslint-disable @typescript-eslint/no-explicit-any */
export interface ISignal<T> {
on(handler: (data: T) => void, thisArg: any): void;
off(handler: (data: T) => void): void;