testing game export

This commit is contained in:
Dynamitos
2023-03-07 21:25:56 +01:00
parent f1062e5bcb
commit 2607c28b98
10 changed files with 134 additions and 37 deletions
+18
View File
@@ -0,0 +1,18 @@
#pragma once
#include "Asset.h"
namespace Seele
{
class LevelAsset : public Asset
{
public:
static constexpr uint64 IDENTIFIER = 0x20;
LevelAsset();
LevelAsset(std::string_view folderPath, std::string_view name);
virtual ~LevelAsset();
virtual void save(ArchiveBuffer& buffer) const override;
virtual void load(ArchiveBuffer& buffer) override;
private:
};
} // namespace Seele