mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2026-03-03 03:23:03 +00:00
refactor: do not nest asset namespaces in game namespaces
* Duplicated namespace names are kind of annoying
This commit is contained in:
@@ -3,11 +3,11 @@
|
||||
#include "Dumping/AbstractAssetDumper.h"
|
||||
#include "Game/IW3/IW3.h"
|
||||
|
||||
namespace IW3::localize
|
||||
namespace localize
|
||||
{
|
||||
class Dumper final : public IAssetDumper<LocalizeEntry>
|
||||
class DumperIW3 final : public IAssetDumper<IW3::LocalizeEntry>
|
||||
{
|
||||
public:
|
||||
void DumpPool(AssetDumpingContext& context, AssetPool<LocalizeEntry>* pool) override;
|
||||
void DumpPool(AssetDumpingContext& context, AssetPool<IW3::LocalizeEntry>* pool) override;
|
||||
};
|
||||
} // namespace IW3::localize
|
||||
} // namespace localize
|
||||
|
||||
Reference in New Issue
Block a user