NMV 0.8.0 - Big refactor and linting fixes

This commit is contained in:
Casper Warden
2025-01-17 23:37:54 +00:00
parent 3870861b0a
commit 53659008ac
210 changed files with 17588 additions and 18300 deletions

View File

@@ -1,9 +1,9 @@
import { GameObject } from '../classes/public/GameObject';
import { UUID } from '../classes/UUID';
import type { GameObject } from '../classes/public/GameObject';
import type { UUID } from '../classes/UUID';
export class ObjectUpdatedEvent
{
objectID: UUID;
localID: number;
object: GameObject;
public objectID: UUID;
public localID: number;
public object: GameObject;
}