Mercurial > mm7
view BSPModel.cpp @ 2293:b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
author | Grumpy7 |
---|---|
date | Sun, 16 Mar 2014 19:42:29 +0100 |
parents | 2e02c384c62b |
children | bddcaf5d5db2 |
line wrap: on
line source
#define _CRT_SECURE_NO_WARNINGS #include <stdlib.h> #include "BSPModel.h" //----- (00478389) -------------------------------------------------------- void BSPModel::Release() { free(this->pVertices.pVertices); this->pVertices.pVertices = 0; free(this->pFaces); this->pFaces = 0; free(this->pFacesOrdering); this->pFacesOrdering = 0; free(this->pNodes); this->pNodes = 0; this->uNumNodes = 0; this->uNumFaces = 0; this->pVertices.uNumVertices = 0; this->uNumConvexFaces = 0; }