blob: 2ea4ff9124c91f6fbdfa323d3860a7068270ed0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include <iostream>
#include <chisel/chisel.h>
#include <chisel/backends/opengl/gl_window.h>
int main() {
std::cout << "chisel toolkit demo" << std::endl;
chisel::GLWindow();
return 0;
}
|