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.
15 lines
276 B
15 lines
276 B
// CObject.cpp: implementation of the CObject class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#include "CObject.h"
|
|
|
|
CObject::CObject()
|
|
{
|
|
ZeroMemory(&m_rDesktop,sizeof(m_rDesktop));
|
|
m_flVelMax=0.0f;
|
|
}
|
|
|
|
CObject::~CObject()
|
|
{
|
|
}
|