mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-13 11:32:29 +00:00
22 lines
434 B
C++
22 lines
434 B
C++
#ifndef GX_GLL_GL_OBJECT_H
|
|
#define GX_GLL_GL_OBJECT_H
|
|
|
|
#include <cstdint>
|
|
|
|
class GLObject {
|
|
public:
|
|
// Member variables
|
|
GLObject* m_Next;
|
|
uint32_t m_RefCount;
|
|
int64_t m_TimeStamp;
|
|
|
|
// Virtual member functions
|
|
virtual void ReleaseObject() = 0;
|
|
virtual void AddRefTwin();
|
|
virtual void ReleaseTwin();
|
|
|
|
// Member functions
|
|
uint32_t Release();
|
|
};
|
|
|
|
#endif
|