cOMS/platform/win32/Window.h
2024-09-11 05:56:09 +02:00

28 lines
394 B
C

/**
* Jingga
*
* @copyright Jingga
* @license OMS License 2.0
* @version 1.0.0
* @link https://jingga.app
*/
#ifndef TOS_UTILS_WINDOW_H
#define TOS_UTILS_WINDOW_H
#include <windows.h>
#include "../../stdlib/Types.h"
struct Window {
bool is_fullscreen;
int32 width;
int32 height;
char name[32];
int32 x;
int32 y;
HWND hwnd;
HDC hdc;
};
#endif