13 lines
209 B
C++
13 lines
209 B
C++
|
#ifndef LIGHTMAP_PROBE_H
|
||
|
#define LIGHTMAP_PROBE_H
|
||
|
|
||
|
#include "scene/3d/node_3d.h"
|
||
|
|
||
|
class LightmapProbe : public Node3D {
|
||
|
GDCLASS(LightmapProbe, Node3D)
|
||
|
public:
|
||
|
LightmapProbe();
|
||
|
};
|
||
|
|
||
|
#endif // LIGHTMAP_PROBE_H
|