messed about

master
ieee 802.11ac 2 years ago
parent f6061c166d
commit f3ad0c53ff

@ -1,2 +1,2 @@
default:
g++ -o build/main -fsanitize=undefined -fsanitize=address src/main.cpp
g++ -o build/main -I include -fsanitize=undefined -fsanitize=address src/main.cpp

@ -1,7 +1,6 @@
#include <vector>
#ifndef BUILDING_HPP
#define BUILDING_HPP
namespace e //placeholder namespace name because i don't have a copyright-free username; IEEE might not like me if i release commercial software under my current one
namespace e // placeholder namespace name because i don't have a copyright-free username; IEEE might not like me if i release commercial software under my current one
{
class Building
{

@ -1,13 +1,13 @@
#include <iostream>
#include "resource.hpp"
#include "resource.cpp"
const std::string version = "0.01a";
int termLength, termHeight;
bool gotShitWorkin = false;
int main()
{
std::cout << "welcome! please set your terminal window's size in characters: " << std::endl;
std::cout << "length: ";
std::cin >> termLength;
std::cout << "\nheight: ";
std::cin >> termHeight;
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;
}

Loading…
Cancel
Save