Add launchable

This commit is contained in:
usernames122
2025-10-23 20:58:19 +02:00
parent 300bb16e5e
commit d9d5460856
27 changed files with 1743 additions and 85 deletions

11
js/instances/Player.js Normal file
View File

@@ -0,0 +1,11 @@
import { Instance } from "./Instance.js";
export class Player extends Instance {
constructor( id, name, ws ) {
super("Player");
this.InstanceId = id; // To fix jank with replication system
this.UserId = id; // For compatibility
this.Name = name;
this.ws = ws; // WebSocket or client reference
}
}