You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
380 B

#include <iostream>
#include "resource.hpp"
#include "resource.cpp"
const std::string version = "0.01a";
bool gotShitWorkin = false;
int main()
{
std::cout << "welcome! current version is " << version << " and ";
if (gotShitWorkin) std::cout << "the UI thing is working, hopefully"; else std::cout << "i still have yet to get the UI system functioning";
return 0;
}