11 lines
283 B
TypeScript
11 lines
283 B
TypeScript
// Movement/Structs/S_SurfaceTestCase.ts
|
|
|
|
import type { E_SurfaceType } from '#root/Movement/Enums/E_SurfaceType.ts';
|
|
import type { Float } from '#root/UE/Float.ts';
|
|
|
|
export interface S_SurfaceTestCase {
|
|
AngleDegrees: Float;
|
|
ExpectedType: E_SurfaceType;
|
|
Description: string;
|
|
}
|