1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-14 01:16:50 +00:00

added some std features used in RogueViz

This commit is contained in:
Zeno Rogue 2018-06-22 02:00:26 +02:00
parent 8f8a259992
commit da60a2f336

View File

@ -38,6 +38,8 @@ using std::stable_sort;
using std::out_of_range; using std::out_of_range;
using std::get; using std::get;
using std::random_shuffle; using std::random_shuffle;
using std::move;
using std::make_tuple;
using std::abs; using std::abs;
using std::isfinite; using std::isfinite;