crash fix for missing party invite resources

This commit is contained in:
2025-03-28 00:48:21 +01:00
parent 6edd50d9c2
commit a4fb6c19fd
4 changed files with 27 additions and 29 deletions

View File

@@ -9,16 +9,16 @@
using namespace godot;
class RichPresence : public Resource {
class RichPresence : public Resource
{
GDCLASS(RichPresence, Resource);
protected:
static void _bind_methods();
public:
H_SET_GET(state, "")
H_SET_GET(details, "")
H_SET_GET(state, "")
H_SET_GET(large_image, "")
H_SET_GET(large_text, "")
H_SET_GET(small_image, "")
@@ -26,7 +26,7 @@ public:
H_SET_GET(timestamps_start, 0)
H_SET_GET(timestamps_end, 0)
RichPresence();
RichPresence();
};
#endif