-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathPartCell.cpp
More file actions
45 lines (33 loc) · 717 Bytes
/
PartCell.cpp
File metadata and controls
45 lines (33 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#include "StdAfx.h"
#include "PartCell.h"
CPartCell::CPartCell() :
m_ShadowPartCount(0), m_ShadowParts(128)
{
}
CPartCell::~CPartCell()
{
}
CShadowPart::CShadowPart(DWORD CPListCount, ClipPlaneList** CPLists, Frame* CPListFrame, CPhysicsPart *pPart)
{
m_CPListCount = CPListCount;
m_CPLists = CPLists;
m_CPListFrame = CPListFrame;
m_PhysicsPart = pPart;
}
CShadowPart::~CShadowPart()
{
if (m_CPLists)
{
for (DWORD i = 0; i < m_CPListCount; i++)
{
if (m_CPLists[i])
delete m_CPLists[i];
}
delete [] m_CPLists;
}
}
void CShadowPart::draw(DWORD ClipPlaneIndex)
{
// Finish me.
__asm int 3;
}