Pixelpart 1.8.2
Godot Plugin
Loading...
Searching...
No Matches
PixelpartPointLightSource.h
1#ifndef PIXELPART_POINT_LIGHT_SOURCE_H
2#define PIXELPART_POINT_LIGHT_SOURCE_H
3
4#include "PixelpartLightSource.h"
5
6namespace godot {
11class PixelpartPointLightSource : public PixelpartLightSource {
12 GDCLASS(PixelpartPointLightSource, PixelpartLightSource)
13
14public:
15 PixelpartPointLightSource();
16 virtual ~PixelpartPointLightSource();
17
18protected:
19 static void _bind_methods();
20};
21}
22
23#endif