Included the Layer_SURFFeature in code

This commit is contained in:
Maximilian Papa
2018-01-25 22:14:00 +01:00
parent ec4a5da05c
commit b4641fe65b
10 changed files with 82 additions and 3 deletions

View File

@ -7,7 +7,8 @@ map<int,float> DestructionPower_Properties::SpeedTable =
{
{0,0.99},
{1,0.7},
{2,0.7}
{2,0.7},
{3,0.5}
};
bool DestructionPower::PreProcessing(coor mySize,const vector<Part*>* partArray)

View File

@ -1,6 +1,6 @@
#pragma once
//TODO!! increase Destructioncount
#define DESTRUCTION_COUNT 2
#define DESTRUCTION_COUNT 3
#include "DestructionPower_Properties.h"
#include "../AbstraktionLayer_Base.h"