Modules/Objects/public/primitives/NullObject.hpp
2024-11-24 22:41:14 +03:00

12 lines
No EOL
141 B
C++

#pragma once
#include "core/Object.hpp"
namespace tp::obj {
struct NullObject : Object {
static ObjectType TypeData;
};
}