glpy/include/glpy.h

9 lines
261 B
C
Raw Normal View History

2024-06-28 13:17:11 +00:00
#pragma once
2024-06-29 03:15:57 +00:00
#include<pybind11/pybind11.h>
#include<pybind11/stl.h>
namespace py = pybind11;
2024-06-28 13:17:11 +00:00
namespace tests{
int glfw_window(unsigned width,unsigned height, std::string title);
2024-06-29 03:15:57 +00:00
int glfw_black_window(unsigned width,unsigned height,std::string title);
2024-06-28 13:17:11 +00:00
}