15 lines
168 B
C++
15 lines
168 B
C++
/*
|
|
* chatlog.hpp
|
|
*
|
|
* Created on: Jul 28, 2017
|
|
* Author: nullifiedcat
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace chatlog
|
|
{
|
|
|
|
void LogMessage(int eid, std::string message);
|
|
}
|