Files
ExPkg/expkg/src/Tex/Tex.h
2025-09-27 19:43:27 +08:00

31 lines
465 B
C++

//
// Created by sfd on 25-8-5.
//
#ifndef TEX_H
#define TEX_H
#include "TexFrameInfoContainer.h"
#include "TexImageContainer.h"
namespace PKG
{
class Tex
{
public:
std::string Magic1;
std::string Magic2;
TexHeader Header = {};
TexImageContainer ImageContainer = {};
bool IsGif = false;
bool IsVideoTexture = false;
TexFrameInfoContainer FrameInfoContainer = {};
};
}
#endif //TEX_H