mirror of
https://github.com/Kiritow/MiniEngine.git
synced 2024-03-22 13:11:22 +08:00
12 lines
132 B
C++
12 lines
132 B
C++
|
#pragma once
|
||
|
#include "begin_code.h"
|
||
|
enum class IMGInitFlag
|
||
|
{
|
||
|
JPG,
|
||
|
PNG,
|
||
|
TIF,
|
||
|
WEBP,
|
||
|
ALL
|
||
|
};
|
||
|
#include "end_code.h"
|