Files
LightYears/LightYearsEngine/include/framework/Object.h
2025-09-05 11:00:14 -05:00

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;
};
}