mirror of
https://github.com/Relintai/godot-lportal.git
synced 2024-11-23 05:17:20 +01:00
20 lines
207 B
C++
20 lines
207 B
C++
#pragma once
|
|
|
|
#include "scene/3d/spatial.h"
|
|
|
|
|
|
// static object
|
|
class LSob
|
|
{
|
|
public:
|
|
ObjectID m_ID; // godot object
|
|
AABB m_aabb; // world space
|
|
};
|
|
|
|
// dynamic object
|
|
class LDob
|
|
{
|
|
public:
|
|
ObjectID m_ID;
|
|
};
|