10 lines
341 B
C++
10 lines
341 B
C++
#pragma once
|
|
#include<pybind11/pybind11.h>
|
|
#include<pybind11/stl.h>
|
|
namespace py = pybind11;
|
|
|
|
namespace tests{
|
|
int glfw_shader(unsigned width,unsigned height, std::string title);
|
|
int glfw_black_window(unsigned width,unsigned height,std::string title);
|
|
int glfw_basic_triangle(unsigned width,unsigned height, std::string title);
|
|
} |