mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-10-28 00:56:58 +00:00
refactor: do not nest asset namespaces in game namespaces
* Duplicated namespace names are kind of annoying
This commit is contained in:
@@ -3,12 +3,12 @@
|
||||
#include "Dumping/AbstractAssetDumper.h"
|
||||
#include "Game/T6/T6.h"
|
||||
|
||||
namespace T6::font_icon
|
||||
namespace font_icon
|
||||
{
|
||||
class JsonDumper final : public AbstractAssetDumper<FontIcon>
|
||||
class JsonDumperT6 final : public AbstractAssetDumper<T6::FontIcon>
|
||||
{
|
||||
protected:
|
||||
bool ShouldDump(XAssetInfo<FontIcon>* asset) override;
|
||||
void DumpAsset(AssetDumpingContext& context, XAssetInfo<FontIcon>* asset) override;
|
||||
bool ShouldDump(XAssetInfo<T6::FontIcon>* asset) override;
|
||||
void DumpAsset(AssetDumpingContext& context, XAssetInfo<T6::FontIcon>* asset) override;
|
||||
};
|
||||
} // namespace T6::font_icon
|
||||
} // namespace font_icon
|
||||
|
||||
Reference in New Issue
Block a user