Quake 4 integrated with DoomRTX

This commit is contained in:
Justin Marshall
2026-05-09 22:10:40 -07:00
parent 8c4a087aa9
commit d37f87e493
436 changed files with 277587 additions and 10254 deletions
+37
View File
@@ -0,0 +1,37 @@
//----------------------------------------------------------------
// Buying.h
//
// Copyright 2005 Ritual Entertainment
//
// This file essentially serves as an extension to the Game DLL
// source files Multiplayer.h and Player.h, in an attempt
// to isolate, as much as possible, these changes from the main
// body of code (for merge simplification, etc).
//----------------------------------------------------------------
#ifndef __BUYING_H__
#define __BUYING_H__
#include "../Game_local.h"
#include "../MultiplayerGame.h"
class riBuyingManager
{
private:
const idDeclEntityDef* _buyingGameBalanceConstants;
int opponentKillCashAward; // latch
int opponentKillFragCount;
public:
riBuyingManager();
~riBuyingManager();
int GetIntValueForKey( const char* keyName, int defaultValue );
int GetOpponentKillCashAward( void );
void Reset( void ) { opponentKillFragCount = -1; }
};
#endif // __BUYING_H__