1 2 3 4 5 6 7 8 9 10
#pragma once using namespace std; class GuiMessage { public: wstring string; int ticks; GuiMessage(const wstring& string); };