mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-11-24 01:47:20 +01:00
Also added a new PaintCanvas.
This commit is contained in:
parent
1c0c3c4393
commit
b05babe4b2
10
modules/paint/nodes/paint_canvas.cpp
Normal file
10
modules/paint/nodes/paint_canvas.cpp
Normal file
@ -0,0 +1,10 @@
|
||||
#include "paint_canvas.h"
|
||||
|
||||
PaintCanvas::PaintCanvas() {
|
||||
}
|
||||
|
||||
PaintCanvas::~PaintCanvas() {
|
||||
}
|
||||
|
||||
void PaintCanvas::_bind_methods() {
|
||||
}
|
17
modules/paint/nodes/paint_canvas.h
Normal file
17
modules/paint/nodes/paint_canvas.h
Normal file
@ -0,0 +1,17 @@
|
||||
#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
|
Loading…
Reference in New Issue
Block a user