hyporo-cpp/source/hyporo/gpu/opengl/device.hpp

27 lines
240 B
C++
Raw Normal View History

2022-10-03 18:51:34 +05:00
#pragma once
#include "../device.hpp"
namespace hpr::gpu::opengl
{
class Device : public gpu::Device
{
protected:
bool p_isInitialized;
public:
// Constructors
Device();
~Device();
};
}