mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-08 05:48:19 -05:00
13 lines
339 B
C++
13 lines
339 B
C++
#pragma once
|
|
#include "ZoneCreation/IZoneCreator.h"
|
|
|
|
namespace IW4
|
|
{
|
|
class ZoneCreator final : public IZoneCreator
|
|
{
|
|
public:
|
|
_NODISCARD bool SupportsGame(const std::string& gameName) const override;
|
|
_NODISCARD std::unique_ptr<Zone> CreateZoneForDefinition(ZoneCreationContext& context) const override;
|
|
};
|
|
}
|