mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
24 lines
359 B
C
24 lines
359 B
C
|
#pragma once
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
namespace ace {
|
||
|
namespace medical {
|
||
|
namespace injuries {
|
||
|
class OpenWound
|
||
|
{
|
||
|
public:
|
||
|
OpenWound(unsigned int anID, unsigned int aBodyPart, unsigned int bloodloss);
|
||
|
~OpenWound();
|
||
|
|
||
|
std::string AsString();
|
||
|
|
||
|
unsigned int classID;
|
||
|
unsigned int bodyPart;
|
||
|
unsigned int bloodlossRate;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|