mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
14 lines
285 B
C++
14 lines
285 B
C++
#pragma once
|
|
|
|
#include "penetration.hpp"
|
|
|
|
namespace ace {
|
|
namespace vehicledamage {
|
|
namespace penetration {
|
|
class bullet : public base_penetration_model {
|
|
public:
|
|
bool process() override;
|
|
};
|
|
}
|
|
}
|
|
} |