Compiles with SDL2 and Cmake, ready for rewrite

This commit is contained in:
Ben
2018-11-27 20:48:41 +00:00
parent 6cf2cd35e4
commit 66692fb863
13 changed files with 73 additions and 46 deletions

8
include/include.h Normal file
View File

@@ -0,0 +1,8 @@
#pragma once
class XD {
public:
static void write(char* i) {
std::cout << i << std::endl;
}
};