networking

This commit is contained in:
2025-07-13 15:47:42 +03:00
parent f5b26be510
commit a9c28b8940
345 changed files with 142130 additions and 174 deletions

View File

@@ -0,0 +1,27 @@
//========= Copyright © 1996-2008, Valve LLC, All rights reserved. ============
//
// Purpose: Class for rendering the sun
//
// $NoKeywords: $
//=============================================================================
#ifndef SUN_H
#define SUN_H
#include "GameEngine.h"
#include "SpaceWarEntity.h"
#define SUN_VECTOR_SCALE_FACTOR 14
class CSun : public CSpaceWarEntity
{
public:
// Constructor
CSun( IGameEngine *pGameEngine );
// Run a frame
void RunFrame();
};
#endif // SUN_H