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