init
This commit is contained in:
32
expkg/src/Tex/Tex.h
Normal file
32
expkg/src/Tex/Tex.h
Normal file
@ -0,0 +1,32 @@
|
||||
//
|
||||
// Created by sfd on 25-8-5.
|
||||
//
|
||||
|
||||
#ifndef TEX_H
|
||||
#define TEX_H
|
||||
#include <optional>
|
||||
#include <string>
|
||||
|
||||
#include "Entry.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;
|
||||
|
||||
// std::optional<TexFrameInfoContainer> FrameInfoContainer = {};
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
#endif //TEX_H
|
||||
Reference in New Issue
Block a user