Files
Nitro_Render_V3/packages/avatar/src/animation/DirectionDataContainer.ts
T
2024-04-03 09:27:56 +02:00

17 lines
295 B
TypeScript

import { IAssetAnimationDirection } from '@nitrots/api';
export class DirectionDataContainer
{
private _offset: number;
constructor(k: IAssetAnimationDirection)
{
this._offset = k.offset;
}
public get offset(): number
{
return this._offset;
}
}