Files
psopeeps-newserv/src/ChatCommands.hh
T
Martin Michelsen b8f1b04bee add $what command
2022-04-30 17:58:44 -07:00

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);