summaryrefslogtreecommitdiffstats
path: root/source/core/basic.h
blob: 5b0e05e7bc93c6cc5231f6a859cd860652452b5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef CORE_LIB_BASIC_H
#define CORE_LIB_BASIC_H

#include "common.h"
#include "slang-math.h"
#include "slang-string.h"
#include "array.h"
#include "list.h"
#include "link.h"
#include "smart-pointer.h"
#include "exception.h"
#include "dictionary.h"
#include "func.h"
#include "linq.h"

namespace CoreLib
{
	using namespace Basic;
}

#endif