Projectiles

This commit is contained in:
Martin
2022-11-30 08:21:22 +01:00
parent da70723f2d
commit 7e20e41482
16 changed files with 140 additions and 31 deletions

View File

@@ -0,0 +1,7 @@
import { Collider2D } from "cc";
import { Projectile } from "./Projectile";
export class ProjectileCollision {
public otherCollider: Collider2D;
public projectile: Projectile;
}