18class DebugDraw2DStats : public RefCounted {
19 GDCLASS(DebugDraw2DStats, RefCounted)
23 static void _bind_methods();
25#define DEFINE_DEFAULT_PROP(name, type, def) \
30 type get_##name() const { return name; } \
31 void set_##name(int64_t val) {}
33 DEFINE_DEFAULT_PROP(overlay_text_groups, int64_t, 0);
34 DEFINE_DEFAULT_PROP(overlay_text_lines, int64_t, 0);
36#undef DEFINE_DEFAULT_PROP
42 const int64_t &p_overlay_text_groups,
43 const int64_t &p_overlay_text_lines);