mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
16 lines
217 B
C++
16 lines
217 B
C++
#include "stdafx.h"
|
|
|
|
#include "V8DataModel/GuiBase.h"
|
|
|
|
#include "V8DataModel/PlayerGui.h"
|
|
|
|
namespace RBX{
|
|
|
|
const char* const sGuiBase = "GuiBase";
|
|
|
|
GuiBase::GuiBase(const char* name)
|
|
: Super(name)
|
|
{}
|
|
|
|
} // Namespace
|