feat: created photo inbox class

This commit is contained in:
Sara Gerretsen 2025-10-30 16:34:54 +01:00
parent a592a0c749
commit 850fe5865b
2 changed files with 12 additions and 0 deletions

View file

@ -0,0 +1,4 @@
#include "photo_inbox.h"
void PhotoInbox::_bind_methods() {
}

View file

@ -0,0 +1,8 @@
#pragma once
#include "scene/2d/node_2d.h"
class PhotoInbox : public Node2D {
GDCLASS(PhotoInbox, Node2D);
static void _bind_methods();
};