forked from ValveSoftware/source-sdk-2013
-
Notifications
You must be signed in to change notification settings - Fork 149
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #110 from mapbase-source/develop
Mapbase v6.3
- Loading branch information
Showing
79 changed files
with
4,217 additions
and
688 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
//========= Copyright � 1996-2009, Valve Corporation, All rights reserved. ============// | ||
// | ||
// Purpose: | ||
// | ||
// | ||
//=====================================================================================// | ||
#include "cbase.h" | ||
#include "c_movie_display.h" | ||
|
||
// memdbgon must be the last include file in a .cpp file!!! | ||
#include "tier0/memdbgon.h" | ||
|
||
IMPLEMENT_CLIENTCLASS_DT( C_MovieDisplay, DT_MovieDisplay, CMovieDisplay ) | ||
RecvPropBool( RECVINFO( m_bEnabled ) ), | ||
RecvPropBool( RECVINFO( m_bLooping ) ), | ||
RecvPropString( RECVINFO( m_szMovieFilename ) ), | ||
RecvPropString( RECVINFO( m_szGroupName ) ), | ||
END_RECV_TABLE() | ||
|
||
C_MovieDisplay::C_MovieDisplay() | ||
{ | ||
} | ||
|
||
C_MovieDisplay::~C_MovieDisplay() | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
//========= Copyright � 1996-2009, Valve Corporation, All rights reserved. ============// | ||
// | ||
// Purpose: | ||
// | ||
//=====================================================================================// | ||
|
||
#ifndef C_MOVIE_DISPLAY_H | ||
#define C_MOVIE_DISPLAY_H | ||
|
||
#include "cbase.h" | ||
|
||
class C_MovieDisplay : public C_BaseEntity | ||
{ | ||
public: | ||
DECLARE_CLASS( C_MovieDisplay, C_BaseEntity ); | ||
DECLARE_CLIENTCLASS(); | ||
|
||
C_MovieDisplay(); | ||
~C_MovieDisplay(); | ||
|
||
bool IsEnabled( void ) const { return m_bEnabled; } | ||
bool IsLooping( void ) const { return m_bLooping; } | ||
|
||
const char *GetMovieFilename( void ) const { return m_szMovieFilename; } | ||
const char *GetGroupName( void ) const { return m_szGroupName; } | ||
|
||
private: | ||
bool m_bEnabled; | ||
bool m_bLooping; | ||
char m_szMovieFilename[128]; | ||
char m_szGroupName[128]; | ||
}; | ||
|
||
#endif //C_MOVIE_DISPLAY_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.