view BSPModel.cpp @ 2411:4106678916e1

added RenderStruct.h for VS 2012
author Ritor1
date Tue, 15 Jul 2014 20:21:08 +0600
parents bddcaf5d5db2
children f4af3b203f65
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 = nullptr;
  free(this->pFacesOrdering);
  this->pFacesOrdering = nullptr;
  free(this->pNodes);
  this->pNodes = nullptr;
  this->uNumNodes = 0;
  this->uNumFaces = 0;
  this->pVertices.uNumVertices = 0;
  this->uNumConvexFaces = 0;
}