mirror of
https://github.com/jmarshall23/DoomRTX.git
synced 2026-08-16 16:20:42 +02:00
Initial Prey Game integration support.
This commit is contained in:
@@ -0,0 +1,55 @@
|
||||
// Copyright (C) 2004 Id Software, Inc.
|
||||
//
|
||||
|
||||
#include "precompiled.h"
|
||||
#pragma hdrstop
|
||||
|
||||
#include "../Game_local.h"
|
||||
|
||||
ABSTRACT_DECLARATION( idClass, idPhysics )
|
||||
END_CLASS
|
||||
|
||||
|
||||
/*
|
||||
================
|
||||
idPhysics::~idPhysics
|
||||
================
|
||||
*/
|
||||
idPhysics::~idPhysics( void ) {
|
||||
}
|
||||
|
||||
/*
|
||||
================
|
||||
idPhysics::Save
|
||||
================
|
||||
*/
|
||||
void idPhysics::Save( idSaveGame *savefile ) const {
|
||||
}
|
||||
|
||||
/*
|
||||
================
|
||||
idPhysics::Restore
|
||||
================
|
||||
*/
|
||||
void idPhysics::Restore( idRestoreGame *savefile ) {
|
||||
}
|
||||
|
||||
/*
|
||||
================
|
||||
idPhysics::SetClipBox
|
||||
================
|
||||
*/
|
||||
void idPhysics::SetClipBox( const idBounds &bounds, float density ) {
|
||||
SetClipModel( new idClipModel( idTraceModel( bounds ) ), density );
|
||||
}
|
||||
|
||||
/*
|
||||
================
|
||||
idPhysics::SnapTimeToPhysicsFrame
|
||||
================
|
||||
*/
|
||||
int idPhysics::SnapTimeToPhysicsFrame( int t ) {
|
||||
int s;
|
||||
s = t + USERCMD_MSEC - 1;
|
||||
return ( s - s % USERCMD_MSEC );
|
||||
}
|
||||
Reference in New Issue
Block a user