15 lines
299 B
TypeScript
15 lines
299 B
TypeScript
// Content/UE/Rotator.ts
|
|
|
|
import type { Float } from '/Content/UE/Float.ts';
|
|
import { StructBase } from '/Content/UE/StructBase.ts';
|
|
|
|
export class Rotator extends StructBase {
|
|
constructor(
|
|
public roll: Float = 0,
|
|
public pitch: Float = 0,
|
|
public yaw: Float = 0
|
|
) {
|
|
super();
|
|
}
|
|
}
|