gsc-tool/src/iw7/stdafx.hpp

29 lines
547 B
C++
Raw Normal View History

2022-01-26 06:08:28 -05:00
// Copyright 2022 xensik. All rights reserved.
2020-05-21 07:32:38 -04:00
//
// Use of this source code is governed by a GNU GPLv3 license
// that can be found in the LICENSE file.
#pragma once
2022-04-12 13:13:10 -04:00
#include <cstdio>
2020-05-21 07:32:38 -04:00
#include <algorithm>
2022-04-12 13:13:10 -04:00
#include <array>
2020-05-21 07:32:38 -04:00
#include <filesystem>
2022-04-12 13:13:10 -04:00
#include <fstream>
2020-05-21 07:32:38 -04:00
#include <functional>
#include <iostream>
2022-04-12 13:13:10 -04:00
#include <map>
#include <memory>
#include <regex>
#include <set>
2020-05-21 07:32:38 -04:00
#include <sstream>
2022-04-12 13:13:10 -04:00
#include <stack>
#include <stdexcept>
#include <string>
2020-05-21 07:32:38 -04:00
#include <unordered_map>
2022-04-12 13:13:10 -04:00
#include <vector>
2020-05-21 07:32:38 -04:00
using namespace std::literals;
#include "xsk/iw7.hpp"