glpy/include/glpy.h
2024-06-29 11:15:57 +08:00

9 lines
261 B
C++

#pragma once
#include<pybind11/pybind11.h>
#include<pybind11/stl.h>
namespace py = pybind11;
namespace tests{
int glfw_window(unsigned width,unsigned height, std::string title);
int glfw_black_window(unsigned width,unsigned height,std::string title);
}