mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-12 07:48:16 -05:00
17 lines
380 B
C++
17 lines
380 B
C++
#pragma once
|
|
|
|
#include "Game/IW3/IW3.h"
|
|
#include "Loading/AssetLoadingActions.h"
|
|
|
|
namespace IW3
|
|
{
|
|
class Actions_GfxImage final : public AssetLoadingActions
|
|
{
|
|
public:
|
|
explicit Actions_GfxImage(Zone* zone);
|
|
|
|
void OnImageLoaded(GfxImage* image) const;
|
|
void LoadImageData(GfxImageLoadDef* loadDef, GfxImage* image) const;
|
|
};
|
|
} // namespace IW3
|