492196b333
The "frame" variable actually contains a string pointing to the character selected. It has nothing to do with a frame which is usually a particular image in an animation. I'm renaming the variable accross the application to avoid confusion.
13 lines
291 B
TypeScript
13 lines
291 B
TypeScript
import {Socket} from "socket.io";
|
|
import {PointInterface} from "./PointInterface";
|
|
|
|
export interface ExSocketInterface extends Socket {
|
|
token: any;
|
|
roomId: string;
|
|
webRtcRoomId: string;
|
|
userId: string;
|
|
name: string;
|
|
character: string;
|
|
position: PointInterface;
|
|
}
|