mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
15 lines
260 B
C++
15 lines
260 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;
|
|
}; |