Logo
Stdafx.h
1// stdafx.h : 標準のシステム インクルード ファイルのインクルード ファイル、または
2// 参照回数が多く、かつあまり変更されない、プロジェクト専用のインクルード ファイル
3// を記述します。
4
5#pragma once
6#include "gl/glew.h"
7#include "KmyPch.h"
8
9#include "Base/Job.h"
10#include "Base/SharpKmyCore.h"
11#include "Base/Task.h"
12#include "Base/Locale.h"
13#include "Base/Logger.h"
14#include "Base/Guid.h"
15
16#include "Gfx/Billboard.h"
17#include "Gfx/Color.h"
18#include "Gfx/Cube.h"
19#include "Gfx/DecalVolume.h"
20#include "Gfx/DrawInfo.h"
21#include "Gfx/Emote.h"
22#include "Gfx/Font.h"
23#include "Gfx/GameView.h"
24#include "Gfx/GeomCluster.h"
25#include "Gfx/GeometryInstance.h"
26#include "Gfx/Grid.h"
27#include "Gfx/InternalCommandBuffer.h"
28#include "Gfx/LineCube.h"
29#include "Gfx/LocalLight.h"
30#include "Gfx/Manipulator.h"
31#include "Gfx/Material.h"
32#include "Gfx/MaterialInstance.h"
33#include "Gfx/ModelData.h"
34#include "Gfx/ModelInstance.h"
35#include "Gfx/NativeTextureRenderer.h"
36#include "Gfx/Particle.h"
37#include "Gfx/Plane.h"
38#include "Gfx/Primitive/Primitive.h"
39#include "Gfx/Render.h"
40#include "Gfx/Shader.h"
41#include "Gfx/SpriteBatch.h"
42#include "Gfx/Transform.h"
43#include "Gfx/Texture.h"
44#include "Gfx/Vertex.h"
45#include "Gfx/VertexBuffer.h"
46#include "Gfx/Vr.h"
47#include "Gfx/GameViewDrawHook.h"
48#include "Gfx/CameraGizmo.h"
49
50#include "Io/FS.h"
51#include "Io/Peripheral.h"
52#include "Io/ResourceServer.h"
53
54#include "Math/Matrix4.h"
55#include "Math/Vector3.h"
56#include "Math/Aabb.h"
57#include "Math/Plane.h"
58
59#include "Physics/Physics.h"
60#include "Physics/Collider.h"
61#include "Physics/RigidBody.h"
62#include "Physics/NativePhysicsNotifyTarget.h"
63#include "Physics/PhysicsObject.h"
64#include "Physics/PhysicsNode.h"
65#include "Physics/Vehicle.h"
66
67#include "Sound/Sound.h"