14 lines
297 B
C++
14 lines
297 B
C++
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
|
|
#include "ServerState.hh"
|
|
#include "Lobby.hh"
|
|
#include "Client.hh"
|
|
|
|
void process_chat_command(std::shared_ptr<ServerState> s, std::shared_ptr<Lobby> l,
|
|
std::shared_ptr<Client> c, const std::u16string& text);
|