12 lines
138 B
C++
12 lines
138 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
struct SDL_Window;
|
|
|
|
class SDL2NativeHandle
|
|
{
|
|
public:
|
|
SDL_Window* window = nullptr;
|
|
};
|