Add default constructor to Frames

Might be removed again at some point, but for now it's back so that the
program can compile again.
This commit is contained in:
prisixia 2023-05-04 20:36:16 +02:00
parent 8c7f47a3f9
commit 3324118cea
Signed by: prisixia
GPG Key ID: CB939A148C9B4125
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ enum class TooltipKind { Armor = 0 };
class Frames {
public:
Frames() = delete;
Frames() = default;
Frames(const std::filesystem::path);
Frames(const std::filesystem::path, const std::filesystem::path,
const std::filesystem::path);