mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
18 lines
289 B
C++
18 lines
289 B
C++
#include "stdafx.h"
|
|
|
|
#include "Util/Region3int16.h"
|
|
#include "Util/ExtentsInt32.h"
|
|
#include "Reflection/Type.h"
|
|
namespace RBX {
|
|
|
|
namespace Reflection
|
|
{
|
|
template<>
|
|
const Type& Type::getSingleton<Region3int16>()
|
|
{
|
|
static TType<Region3int16> type("Region3int16");
|
|
return type;
|
|
}
|
|
}
|
|
|
|
} |