mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-22 11:15:15 +00:00
23 lines
361 B
C++
23 lines
361 B
C++
#ifndef SEAD_TEXTURE_H_
|
|
#define SEAD_TEXTURE_H_
|
|
|
|
#include <basis/seadTypes.h>
|
|
#include <prim/seadRuntimeTypeInfo.h>
|
|
|
|
namespace sead
|
|
{
|
|
class Texture
|
|
{
|
|
SEAD_RTTI_BASE(Texture)
|
|
|
|
public:
|
|
Texture() {}
|
|
virtual ~Texture() {}
|
|
|
|
virtual u32 getWidth() const = 0;
|
|
virtual u32 getHeight() const = 0;
|
|
};
|
|
|
|
} // namespace sead
|
|
|
|
#endif // SEAD_TEXTURE_H_
|