refactor lua usertypes

This commit is contained in:
MihailRis
2025-10-11 00:11:25 +03:00
parent 48b8c3e9b4
commit 81d21d6e8b
18 changed files with 166 additions and 152 deletions
+5
View File
@@ -48,4 +48,9 @@ namespace lua {
void log_error(const std::string& text);
class Userdata {
public:
virtual ~Userdata() {};
virtual const std::string& getTypeName() const = 0;
};
}