You've already forked Nitro_Render_V3
mirror of
https://github.com/duckietm/Nitro_Render_V3.git
synced 2026-06-20 07:26:18 +00:00
19 lines
428 B
TypeScript
19 lines
428 B
TypeScript
export class RoomObjectSpriteData
|
|
{
|
|
public objectId: number;
|
|
public x: number;
|
|
public y: number;
|
|
public z: number;
|
|
public name: string;
|
|
public blendMode: string;
|
|
public flipH: boolean;
|
|
public skew: number;
|
|
public frame: boolean;
|
|
public color: string;
|
|
public alpha: number;
|
|
public width: number;
|
|
public height: number;
|
|
public type: string;
|
|
public posture: string;
|
|
}
|