Added sounds

This commit is contained in:
Martin
2022-12-22 12:08:00 +01:00
parent bccaf323e1
commit 090a89ae08
17 changed files with 116 additions and 20 deletions

View File

@@ -1,6 +1,7 @@
import { ISignal } from "../../Services/EventSystem/ISignal";
import { ProjectileCollision } from "./ProjectileCollision";
export interface IProjectileCollisionSignaler {
export interface IProjectileLauncherSignaler {
get ProjectileCollisionEvent(): ISignal<ProjectileCollision>;
get ProjectileLaunchedEvent(): ISignal;
}