21 lines
365 B
C++
21 lines
365 B
C++
|
/***
|
||
|
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
||
|
|
||
|
File: PrimitiveValue.hpp
|
||
|
Date: 2021-10-24
|
||
|
Author: Reece
|
||
|
***/
|
||
|
#pragma once
|
||
|
|
||
|
namespace Aurora::Data
|
||
|
{
|
||
|
union PrimitiveValue
|
||
|
{
|
||
|
AuUInt64 uint;
|
||
|
AuInt64 sint;
|
||
|
double number;
|
||
|
bool boolean;
|
||
|
AuVec3 vec3;
|
||
|
AuVec4 vec4;
|
||
|
};
|
||
|
}
|