messed about

master
ieee 802.11ac 2 years ago
parent f6061c166d
commit f3ad0c53ff

@ -1,2 +1,2 @@
default: 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 #ifndef BUILDING_HPP
#define 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 class Building
{ {

@ -1,13 +1,13 @@
#include <iostream> #include <iostream>
#include "resource.hpp"
#include "resource.cpp"
const std::string version = "0.01a"; const std::string version = "0.01a";
int termLength, termHeight; bool gotShitWorkin = false;
int main() int main()
{ {
std::cout << "welcome! please set your terminal window's size in characters: " << std::endl; std::cout << "welcome! current version is " << version << " and ";
std::cout << "length: "; if (gotShitWorkin) std::cout << "the UI thing is working, hopefully"; else std::cout << "i still have yet to get the UI system functioning";
std::cin >> termLength; return 0;
std::cout << "\nheight: ";
std::cin >> termHeight;
} }

Loading…
Cancel
Save