17 lines
178 B
C
17 lines
178 B
C
|
#pragma once
|
||
|
#ifndef GWEN_WINDOW_PROVIDER_H
|
||
|
#define GWEN_WINDOW_PROVIDER_H
|
||
|
|
||
|
namespace Gwen
|
||
|
{
|
||
|
class WindowProvider
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
virtual void* GetWindow() = 0;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|