mirror of
https://github.com/encounter/aurora.git
synced 2025-07-01 10:53:31 +00:00
7 lines
130 B
C++
7 lines
130 B
C++
#include "gx.hpp"
|
|
|
|
void GXDestroyTexObj(GXTexObj* obj_) {
|
|
auto* obj = reinterpret_cast<GXTexObj_*>(obj_);
|
|
obj->ref.reset();
|
|
}
|