~starkingdoms/starkingdoms

ref: 026450bb48c5ccc04f07b4dc6de2860a1c808085 starkingdoms/client/src/protocol/MessageS2C.ts -rw-r--r-- 243 bytes
026450bb — c0repwn3r add client code 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
import {State} from "./State";

export class MessageS2C_Hello {
    version: number;
    given_username: string;
    next_state: State;

    constructor(version: number, given_username: string, next_state: State) {
        this.version
    }
}