Style: Enforce AllowShortFunctionsOnASingleLine
This commit is contained in:
@ -40,11 +40,15 @@
|
||||
|
||||
class Node;
|
||||
|
||||
#define RES_BASE_EXTENSION(m_ext) \
|
||||
public: \
|
||||
static void register_custom_data_to_otdb() { ClassDB::add_resource_base_extension(m_ext, get_class_static()); } \
|
||||
virtual String get_base_extension() const override { return m_ext; } \
|
||||
\
|
||||
#define RES_BASE_EXTENSION(m_ext) \
|
||||
public: \
|
||||
static void register_custom_data_to_otdb() { \
|
||||
ClassDB::add_resource_base_extension(m_ext, get_class_static()); \
|
||||
} \
|
||||
virtual String get_base_extension() const override { \
|
||||
return m_ext; \
|
||||
} \
|
||||
\
|
||||
private:
|
||||
|
||||
class Resource : public RefCounted {
|
||||
|
||||
Reference in New Issue
Block a user