mirror of
https://github.com/libretro/cpp-cheat.git
synced 2025-04-14 17:19:59 +00:00
20 lines
338 B
C++
20 lines
338 B
C++
#ifndef COMMON_HPP
|
|
#define COMMON_HPP
|
|
|
|
#include <algorithm>
|
|
#include <cassert>
|
|
#include <iterator>
|
|
#include <set>
|
|
#include <unordered_map>
|
|
#include <unordered_set>
|
|
#include <utility> // pair
|
|
#include <vector>
|
|
|
|
#include <boost/geometry.hpp>
|
|
#include <boost/iterator.hpp>
|
|
|
|
namespace bg = boost::geometry;
|
|
namespace bgi = bg::index;
|
|
|
|
#endif
|