mirror of
https://github.com/MartinKral/Slash-The-Hordes
synced 2024-12-25 19:28:53 +00:00
8 lines
283 B
TypeScript
8 lines
283 B
TypeScript
import { ISignal } from "../../Services/EventSystem/ISignal";
|
|
import { ProjectileCollision } from "./ProjectileCollision";
|
|
|
|
export interface IProjectileLauncherSignaler {
|
|
get ProjectileCollisionEvent(): ISignal<ProjectileCollision>;
|
|
get ProjectileLaunchedEvent(): ISignal;
|
|
}
|