14 lines
291 B
C++
14 lines
291 B
C++
#pragma once
|
|
|
|
#include "AbstractSingleton.h"
|
|
|
|
class IAbstractChat : public TAbstractSingleton<IAbstractChat>
|
|
{
|
|
public:
|
|
IAbstractChat() {}
|
|
virtual ~IAbstractChat() {}
|
|
|
|
virtual void AppendChat(int iType, const char * c_szChat) = 0;
|
|
};
|
|
//martysama0134's 2e58d0b8baeb072acdf3afc4a5d1999f
|