This repository was archived by the owner on May 9, 2021. It is now read-only.

Description
export abstract class DevManager {
private static RegisterListeners() {
CustomGameEventManager.RegisterListener("devtools_get_mode", (playerID: number, event: table) => this.OnGetMode(playerID, event));
}
public static OnGetMode(playerID: number, event: table) {
Log.Log(LogLevel.Debug, "DevManager", "OnGetMode", `playerID: ${playerID} event: ${event}`);
}
}
This ends in the scenario that playerID is the event-table and event is nil.
Is it related to declartions or did i failed there anything?
And yes, i need that as abstract and static. ;)