mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2025-01-05 10:29:39 +01:00
50 lines
825 B
C++
50 lines
825 B
C++
#ifndef USER_MODULE_H
|
|
#define USER_MODULE_H
|
|
|
|
#include "core/os/rw_lock.h"
|
|
#include "core/string/ustring.h"
|
|
|
|
#include "core/object/resource.h"
|
|
|
|
class User;
|
|
|
|
class UserModule : public Resource {
|
|
GDCLASS(UserModule, Resource);
|
|
|
|
public:
|
|
int get_module_index() const;
|
|
void set_module_index(const int val);
|
|
|
|
String get_module_name() const;
|
|
void set_module_name(const String &val);
|
|
|
|
Ref<User> get_user();
|
|
void set_user(User *user);
|
|
|
|
Dictionary to_dict();
|
|
void from_dict(const Dictionary &dict);
|
|
|
|
virtual Dictionary _to_dict();
|
|
virtual void _from_dict(const Dictionary &dict);
|
|
|
|
void read_lock();
|
|
void read_unlock();
|
|
void write_lock();
|
|
void write_unlock();
|
|
|
|
UserModule();
|
|
~UserModule();
|
|
|
|
protected:
|
|
static void _bind_methods();
|
|
|
|
int _module_index;
|
|
String _module_name;
|
|
|
|
User *_user;
|
|
|
|
RWLock _rw_lock;
|
|
};
|
|
|
|
#endif
|