2021-07-23 01:12:36 +02:00

17 lines
363 B
C++

#pragma once
#include "Loading/AssetLoadingActions.h"
#include "Game/IW5/IW5.h"
namespace IW5
{
class Actions_GfxImage final : public AssetLoadingActions
{
public:
explicit Actions_GfxImage(Zone* zone);
void OnImageLoaded(GfxImage* image) const;
void LoadImageData(GfxImageLoadDef* loadDef, GfxImage* image) const;
};
}