9 lines
261 B
C++
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);
|
|
} |