2015-05-03 22:02:39 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace ace {
|
2015-05-03 22:32:44 +00:00
|
|
|
namespace medical {
|
|
|
|
namespace injuries {
|
|
|
|
class OpenWound
|
|
|
|
{
|
|
|
|
public:
|
2015-05-16 21:18:58 +00:00
|
|
|
OpenWound(int anID, int aClassID, int aBodyPartId, double aPercentage, double aBl, double painAmount);
|
2015-05-03 22:32:44 +00:00
|
|
|
~OpenWound();
|
2015-05-03 22:02:39 +00:00
|
|
|
|
2015-05-03 22:32:44 +00:00
|
|
|
std::string AsString();
|
2015-05-03 22:02:39 +00:00
|
|
|
|
2015-05-16 21:18:58 +00:00
|
|
|
int woundID;
|
2015-05-14 16:52:12 +00:00
|
|
|
int classID;
|
2015-05-14 16:56:23 +00:00
|
|
|
int percentage;
|
2015-05-14 14:23:01 +00:00
|
|
|
double bodyPart;
|
|
|
|
double bloodlossRate;
|
2015-05-14 16:56:23 +00:00
|
|
|
double pain;
|
2015-05-03 22:32:44 +00:00
|
|
|
};
|
2015-05-03 22:02:39 +00:00
|
|
|
|
2015-05-03 22:32:44 +00:00
|
|
|
}
|
|
|
|
}
|
2015-05-03 22:02:39 +00:00
|
|
|
}
|