]> git.localhorst.tv Git - blobs.git/blob - src/blobs.cpp
more stolen stuff
[blobs.git] / src / blobs.cpp
1 #include "app/Application.hpp"
2 #include "app/init.hpp"
3 #include "world/Planet.hpp"
4
5 #include <exception>
6 #include <iostream>
7
8
9 using namespace blobs;
10
11 int main(int argc, char *argv[]) {
12         app::Init init;
13         world::Planet planet(1); // r=1 should be a 3³
14
15         app::Application app;
16 }