mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-21 03:16:54 +01:00
18 lines
240 B
C++
18 lines
240 B
C++
#ifndef PAINT_CANVAS_H
|
|
#define PAINT_CANVAS_H
|
|
|
|
#include "paint_node.h"
|
|
|
|
class PaintCanvas : public PaintNode {
|
|
GDCLASS(PaintCanvas, PaintNode);
|
|
|
|
public:
|
|
PaintCanvas();
|
|
~PaintCanvas();
|
|
|
|
protected:
|
|
static void _bind_methods();
|
|
};
|
|
|
|
#endif
|