forked from tiltedphoques/TiltedEvolution
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathComponents.h
More file actions
20 lines (17 loc) · 737 Bytes
/
Components.h
File metadata and controls
20 lines (17 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#pragma once
// This makes sure we can't include components any other way than by including this file
#define TP_INTERNAL_COMPONENTS_GUARD
#include <Components/LocalAnimationComponent.h>
#include <Components/RemoteAnimationComponent.h>
#include <Components/FormIdComponent.h>
#include <Components/InterpolationComponent.h>
#include <Components/WaitingForAssignmentComponent.h>
#include <Components/LocalComponent.h>
#include <Components/RemoteComponent.h>
#include <Components/FaceGenComponent.h>
#include <Components/CacheComponent.h>
#include <Components/WaitingFor3D.h>
#include <Components/ActorValuesComponent.h>
#include <Components/ObjectComponent.h>
#include <Components/PlayerComponent.h>
#undef TP_INTERNAL_COMPONENTS_GUARD