mirror of https://github.com/axmolengine/axmol.git
19 lines
242 B
C
19 lines
242 B
C
|
#pragma once
|
||
|
|
||
|
#include "../DeviceInfo.h"
|
||
|
|
||
|
CC_BACKEND_BEGIN
|
||
|
|
||
|
class DeviceInfoGL: public DeviceInfo
|
||
|
{
|
||
|
public:
|
||
|
DeviceInfoGL() = default;
|
||
|
virtual ~DeviceInfoGL() = default;
|
||
|
|
||
|
virtual bool init() override;
|
||
|
|
||
|
private:
|
||
|
};
|
||
|
|
||
|
CC_BACKEND_END
|