13 lines
319 B
TypeScript
13 lines
319 B
TypeScript
// Movement/Collision/S_SweepResult.ts
|
|
|
|
import type { HitResult } from '#root/UE/HitResult.ts';
|
|
import type { Integer } from '#root/UE/Integer.ts';
|
|
import type { Vector } from '#root/UE/Vector.ts';
|
|
|
|
export interface S_SweepResult {
|
|
Location: Vector;
|
|
Hit: HitResult;
|
|
Blocked: boolean;
|
|
CollisionCount: Integer;
|
|
}
|