PuzzleSolver/Source/functions/AbstractionLayers/DestructionPower/DestructionPower_Properties.h
2018-01-20 09:40:03 +01:00

23 lines
357 B
C++

#pragma once
#define DESTRUCTION_INIT 0.5
#include <stdint.h>
#include <map>
#include <vector>
using namespace std;
class DestructionPower_Properties
{
public:
explicit DestructionPower_Properties();
void setSpeedTable();
static map<int,float> SpeedTable;
vector<float> DestructionArray;
private:
friend class DestructionPower;
};