2019-07-27 17:36:24 +03:00
|
|
|
//
|
2020-11-03 08:57:12 +03:00
|
|
|
// YaPB - Counter-Strike Bot based on PODBot by Markus Klinge.
|
|
|
|
|
// Copyright © 2004-2020 YaPB Project <yapb@jeefo.net>.
|
2019-07-27 17:36:24 +03:00
|
|
|
//
|
2020-11-03 08:57:12 +03:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-07-27 17:36:24 +03:00
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
|
|
#include <crlib/cr-basic.h>
|
|
|
|
|
#include <crlib/cr-alloc.h>
|
|
|
|
|
#include <crlib/cr-array.h>
|
2020-09-16 13:07:47 +03:00
|
|
|
#include <crlib/cr-deque.h>
|
2019-07-27 17:36:24 +03:00
|
|
|
#include <crlib/cr-binheap.h>
|
|
|
|
|
#include <crlib/cr-files.h>
|
|
|
|
|
#include <crlib/cr-lambda.h>
|
|
|
|
|
#include <crlib/cr-http.h>
|
|
|
|
|
#include <crlib/cr-library.h>
|
2020-06-21 09:45:09 +03:00
|
|
|
#include <crlib/cr-hashmap.h>
|
2019-07-27 17:36:24 +03:00
|
|
|
#include <crlib/cr-logger.h>
|
|
|
|
|
#include <crlib/cr-math.h>
|
|
|
|
|
#include <crlib/cr-vector.h>
|
|
|
|
|
#include <crlib/cr-random.h>
|
|
|
|
|
#include <crlib/cr-ulz.h>
|
|
|
|
|
#include <crlib/cr-color.h>
|
2020-06-21 09:45:09 +03:00
|
|
|
#include <crlib/cr-detour.h>
|
2019-07-27 17:36:24 +03:00
|
|
|
|
|
|
|
|
CR_NAMESPACE_BEGIN
|
|
|
|
|
|
|
|
|
|
namespace types {
|
|
|
|
|
using StringArray = Array <String>;
|
|
|
|
|
using IntArray = Array <int>;
|
2019-08-01 23:02:44 +03:00
|
|
|
}
|
2019-07-27 17:36:24 +03:00
|
|
|
|
|
|
|
|
using namespace cr::types;
|
|
|
|
|
|
2020-06-12 18:52:38 +03:00
|
|
|
CR_NAMESPACE_END
|