update precomp hdrs

This commit is contained in:
cxgeorge 2001-06-04 03:13:02 +00:00
parent c01e5cb2ad
commit 77c9e1b482
4 changed files with 32 additions and 0 deletions

View File

@ -16,9 +16,19 @@
//
////////////////////////////////////////////////////////////////////
#if defined(WIN32_VC) && !defined(NO_PCH)
#include "lerp_headers.h"
#endif
#pragma hdrstop
#if !defined(WIN32_VC) || defined(NO_PCH)
#include "lerp.h"
#include "lerpfunctor.h"
#endif
#include "config_lerp.h"
Configure(config_lerp);
NotifyCategoryDef(lerp, "");

View File

@ -16,9 +16,19 @@
//
////////////////////////////////////////////////////////////////////
#if defined(WIN32_VC) && !defined(NO_PCH)
#include "lerp_headers.h"
#endif
#pragma hdrstop
#if !defined(WIN32_VC) || defined(NO_PCH)
#include "lerp.h"
#endif
#include <clockObject.h>
#include <throw_event.h>
TypeHandle Lerp::_type_handle;
TypeHandle AutonomousLerp::_type_handle;

View File

@ -16,9 +16,14 @@
//
////////////////////////////////////////////////////////////////////
#if defined(WIN32_VC) && !defined(NO_PCH)
#include "lerp_headers.h"
#endif
#pragma hdrstop
#include "lerpblend.h"
TypeHandle LerpBlendType::_type_handle;
TypeHandle EaseInBlendType::_type_handle;
TypeHandle EaseOutBlendType::_type_handle;

View File

@ -16,9 +16,16 @@
//
////////////////////////////////////////////////////////////////////
#if defined(WIN32_VC) && !defined(NO_PCH)
#include "lerp_headers.h"
#endif
#pragma hdrstop
#if !defined(WIN32_VC) || defined(NO_PCH)
#include "lerpfunctor.h"
#endif
TypeHandle LerpFunctor::_type_handle;
TypeHandle MultiLerpFunctor::_type_handle;