You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
687 B
26 lines
687 B
//========= 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() |
|
{ |
|
}
|
|
|