mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-05-11 19:53:52 +00:00
8 lines
130 B
C++
8 lines
130 B
C++
|
|
#include "stdafx.h"
|
||
|
|
#include "GuiMessage.h"
|
||
|
|
|
||
|
|
GuiMessage::GuiMessage(const wstring& string)
|
||
|
|
{
|
||
|
|
this->string = string;
|
||
|
|
ticks = 0;
|
||
|
|
}
|