This is a simple game I'm writing to test the idea of using games to teach C++.
https://learncodethehardway.com/
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.
29 lines
494 B
29 lines
494 B
// PPPheaders.h
|
|
|
|
#include<iostream>
|
|
#include <sstream>
|
|
#include<string>
|
|
#include<vector>
|
|
#include<span>
|
|
#include<stdexcept>
|
|
#include<random>
|
|
|
|
#include<stdint.h>
|
|
#include<list>
|
|
#include <map>
|
|
#include<unordered_map>
|
|
#include <set>
|
|
#include<memory>
|
|
#include <algorithm>
|
|
|
|
#define PPP_EXPORT
|
|
#include "PPP_support.h"
|
|
|
|
using namespace std;
|
|
using namespace PPP;
|
|
|
|
|
|
// disgusting macro hack to get a range checking:
|
|
#define vector Checked_vector
|
|
#define string Checked_string
|
|
#define span Checked_span
|
|
|