mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-26 00:23:55 -07:00
14 lines
267 B
C
14 lines
267 B
C
#ifndef COCKATRICE_CONTEXT_JOIN_ROOM_H
|
|
#define COCKATRICE_CONTEXT_JOIN_ROOM_H
|
|
|
|
#include "context_connect_to_server.h"
|
|
|
|
#include <QString>
|
|
|
|
struct ContextJoinRoom
|
|
{
|
|
ContextConnectToServer serverContext;
|
|
int roomId;
|
|
};
|
|
|
|
#endif // COCKATRICE_CONTEXT_JOIN_ROOM_H
|