15 lines
210 B
C++
15 lines
210 B
C++
#pragma once
|
|
|
|
namespace ly{
|
|
class Object {
|
|
public:
|
|
Object();
|
|
virtual ~Object();
|
|
|
|
void Destroy();
|
|
bool IsPendingDestroy() const { return mIsPendingDestroy; };
|
|
|
|
private:
|
|
bool mIsPendingDestroy;
|
|
};
|
|
} |