Gered
c5cdddbeaa
current versions of all of my basic framework sources, build configurations/scripts, and supporting assets
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
|