Modules/Objects/public/primitives/NullObject.hpp
2024-03-25 13:57:31 +03:00

12 lines
No EOL
141 B
C++

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