mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
21 lines
446 B
C++
21 lines
446 B
C++
|
#pragma once
|
||
|
|
||
|
namespace ace {
|
||
|
namespace vehicledamage {
|
||
|
enum class MATERIAL_TYPES {
|
||
|
TUNGSTEN = 0,
|
||
|
DEPLETED_URANIUM = 1,
|
||
|
STEEL = 2,
|
||
|
LEAD = 3
|
||
|
};
|
||
|
|
||
|
// Hardness, density
|
||
|
const static float material_properties[][2] = {
|
||
|
{ 600, 19100 },
|
||
|
{ 600, 19100 },
|
||
|
{ 300, 4800 },
|
||
|
{ 300, 11000 }
|
||
|
};
|
||
|
|
||
|
}
|
||
|
}
|