2025-05-25 04:43:37 +00:00
|
|
|
#include "simsbasic.h"
|
|
|
|
|
|
|
|
|
|
|
|
UniException::UniException(const QString& msg)
|
|
|
|
:_error_store(msg) {
|
|
|
|
}
|
|
|
|
|
|
|
|
QString UniException::content() const noexcept
|
|
|
|
{
|
|
|
|
return _error_store;
|
|
|
|
}
|
2025-07-11 16:30:19 +00:00
|
|
|
|
|
|
|
#include "internal_impl.h"
|
|
|
|
uint64_t PublicTable::entityManagerAddress()
|
|
|
|
{
|
|
|
|
return RtEntityManager::const_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t PublicTable::resourceManagerAddress()
|
|
|
|
{
|
|
|
|
return RtResourceManager::const_id;
|
|
|
|
}
|