~starkingdoms/starkingdoms

ref: 75de30ef4820a5c0d0784a620f647c6819173a07 starkingdoms/client/src/protocol/MessageS2C.ts -rw-r--r-- 243 bytes
75de30ef — c0repwn3r client no longer a crate 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
    }
}