1
0
forked from noxious/server

Added ORM entities

This commit is contained in:
2024-12-24 22:08:08 +01:00
parent 40c24cee10
commit 8980691409
15 changed files with 403 additions and 1 deletions

View File

@ -0,0 +1,39 @@
import { randomUUID } from 'node:crypto'
import { Entity, ManyToOne, PrimaryKey, Property } from '@mikro-orm/core';
import { Sprite } from './sprite';
@Entity()
export class SpriteAction {
@PrimaryKey()
id = randomUUID();
@ManyToOne(() => Sprite)
sprite!: Sprite;
@Property()
action!: string;
@Property({ type: 'json', nullable: true })
sprites?: any;
@Property()
originX = 0;
@Property()
originY = 0;
@Property()
isAnimated = false;
@Property()
isLooping = false;
@Property()
frameWidth = 0;
@Property()
frameHeight = 0;
@Property()
frameRate = 0;
}