Skip to content
Snippets Groups Projects
Forked from Filip Strömbäck / sfml-demo
5 commits behind the upstream repository.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
common.h 344 B
#pragma once

#include <iostream>
#include <string>
#include <vector>
#include <memory>
#include <cmath>
#include <SFML/Graphics.hpp>

using std::cout;
using std::endl;

using std::shared_ptr;
using std::unique_ptr;

using std::vector;
using std::string;

using std::min;
using std::max;

extern const size_t width;
extern const size_t height;