mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
16 lines
261 B
C++
16 lines
261 B
C++
class GVAR(spall_small): GVAR(small) {
|
|
timeToLive = 0.1;
|
|
};
|
|
|
|
class GVAR(spall_medium): GVAR(medium) {
|
|
timeToLive = 0.15;
|
|
};
|
|
|
|
class GVAR(spall_large): GVAR(large) {
|
|
timeToLive = 0.25;
|
|
};
|
|
|
|
class GVAR(spall_huge): GVAR(huge) {
|
|
timeToLive = 0.3;
|
|
};
|