This repository has been archived on 2022-10-27. You can view files and clone it, but cannot push or open issues or pull requests.
InfinitShoot/hazel/window.h

14 lines
334 B
C

#ifndef __HAZEL_WINDOW_H__
#define __HAZEL_WINDOW_H__
#include "pch.h"
extern GLFWwindow* window;
int Hazel_InitWindow(const char* title, int width, int height);
DLLEXPORT void Hazel_WindowGetSize(int* w, int* h);
DLLEXPORT void Hazel_GetCanvaSize(int* w, int* h);
DLLEXPORT void Hazel_WindowSetIcon(const char* filename);
#endif