This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct GG { | |
int qq[2]; | |
GG (int n=0, int b=0) { qq[0] = n, qq[1] = b; } | |
}; | |
std::vector<GG> vec; | |
unsigned pushback(int nxt, int b) { | |
vec.push_back(GG(nxt, b)); | |
return vec.size()-1; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "SFML/Graphics.hpp" | |
#include "engine.h" | |
#include "stdio.h" | |
using namespace sf; | |
Engine::Engine (string title) { | |
//Fuck you c++ | |
} | |
Engine::Engine (void) {} |