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
+29
View File
@@ -0,0 +1,29 @@
#include "LevelAsset.h"
using namespace Seele;
LevelAsset::LevelAsset()
{
}
LevelAsset::LevelAsset(std::string_view folderPath, std::string_view name)
: Asset(folderPath, name)
{
}
LevelAsset::~LevelAsset()
{
}
void LevelAsset::save(ArchiveBuffer& buffer) const
{
}
void LevelAsset::load(ArchiveBuffer& buffer)
{
}