|
// Content/Movement/Structs/S_SurfaceTestCase.ts
|
|
|
|
import type {Float} from "../../types.js";
|
|
import type {E_SurfaceType} from "../Enums/E_SurfaceType.js";
|
|
|
|
export interface S_SurfaceTestCase {
|
|
AngleDegrees: Float;
|
|
ExpectedType: E_SurfaceType;
|
|
Description: string;
|
|
}
|