#pragma once #include struct Image_Info { int64_t width; int64_t height; uint32_t* pixel; }; Image_Info load_tga_file(const char* path);