first commit

This commit is contained in:
Noel Berry
2021-01-01 17:43:43 -08:00
parent 08a54973a2
commit 04557c8ca2
5 changed files with 53 additions and 11 deletions

18
src/main.cpp Normal file
View File

@ -0,0 +1,18 @@
#include <blah.h>
using namespace Blah;
namespace
{
}
int main()
{
Config config;
config.width = 1280;
config.height = 720;
config.name = "tiny link";
App::run(&config);
}