Fixing unique ptr declares

This commit is contained in:
Dynamitos
2025-01-23 16:00:29 +01:00
parent 9e9e1482d1
commit bcd9c6b1c4
3 changed files with 8 additions and 7 deletions
+4
View File
@@ -1,2 +1,6 @@
#include "ModelLoader.h"
PModel ModelLoader::loadModel(std::string_view filename)
{
}
+1 -1
View File
@@ -4,6 +4,6 @@
class ModelLoader
{
public:
OModel loadModel(std::string_view filename);
static PModel loadModel(std::string_view filename);
private:
};