mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2025-02-17 01:22:18 +00:00
17 lines
149 B
C++
17 lines
149 B
C++
|
|
||
|
#include "Texture.h"
|
||
|
|
||
|
Texture::Texture()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
Texture* Texture_New()
|
||
|
{
|
||
|
return new Texture();
|
||
|
}
|
||
|
|
||
|
void Texture_Delete(Texture* tex)
|
||
|
{
|
||
|
delete tex;
|
||
|
}
|