feat: Added NoNut core

This commit is contained in:
AURUMVORXX
2024-11-04 13:50:49 +03:00
parent 5dea12785b
commit 78885ebce6
18 changed files with 1116 additions and 2 deletions

View File

@@ -0,0 +1,21 @@
#ifndef CORE_COMMONHEADER_H_
#define CORE_COMMONHEADER_H_
#include "sqrat.h"
namespace nonut
{
using Int = SQInteger;
using UInt = SQUnsignedInteger;
using UInt32 = SQUnsignedInteger32;
using Float = SQFloat;
using Bool = SQBool;
using String = std::string;
constexpr SQObject SQ_NULL{ OT_NULL };
}
namespace nonut::g2o{}
namespace g2o = nonut::g2o;
#endif // CORE_COMMONHEADER_H_