mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-07-04 10:37:52 -05:00
chore: add ObjCompiling component
This commit is contained in:
8
src/ObjCompiling/Game/IW3/ObjCompilerIW3.cpp
Normal file
8
src/ObjCompiling/Game/IW3/ObjCompilerIW3.cpp
Normal file
@ -0,0 +1,8 @@
|
||||
#include "ObjCompilerIW3.h"
|
||||
|
||||
using namespace IW3;
|
||||
|
||||
ObjCompilerResult ObjCompiler::CompileAssetForZone(AssetLoadingContext& context, asset_type_t assetType, const std::string& assetName) const
|
||||
{
|
||||
return ObjCompilerResult::NO_COMPILATION_DONE;
|
||||
}
|
12
src/ObjCompiling/Game/IW3/ObjCompilerIW3.h
Normal file
12
src/ObjCompiling/Game/IW3/ObjCompilerIW3.h
Normal file
@ -0,0 +1,12 @@
|
||||
#pragma once
|
||||
|
||||
#include "IObjCompiler.h"
|
||||
|
||||
namespace IW3
|
||||
{
|
||||
class ObjCompiler final : public IObjCompiler
|
||||
{
|
||||
public:
|
||||
ObjCompilerResult CompileAssetForZone(AssetLoadingContext& context, asset_type_t assetType, const std::string& assetName) const override;
|
||||
};
|
||||
} // namespace IW3
|
Reference in New Issue
Block a user