diff options
author | aap <aap@papnet.eu> | 2019-06-30 23:31:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-30 23:31:57 +0200 |
commit | f4cf98174c9995ce8f9b916a80b2aa81bc69bba4 (patch) | |
tree | 2b629178b15fc7c46f3128efeb815ac05c65d044 /src/entities/Automobile.h | |
parent | little cleanup (diff) | |
parent | Merge remote-tracking branch 'upstream/master' (diff) | |
download | re3-f4cf98174c9995ce8f9b916a80b2aa81bc69bba4.tar re3-f4cf98174c9995ce8f9b916a80b2aa81bc69bba4.tar.gz re3-f4cf98174c9995ce8f9b916a80b2aa81bc69bba4.tar.bz2 re3-f4cf98174c9995ce8f9b916a80b2aa81bc69bba4.tar.lz re3-f4cf98174c9995ce8f9b916a80b2aa81bc69bba4.tar.xz re3-f4cf98174c9995ce8f9b916a80b2aa81bc69bba4.tar.zst re3-f4cf98174c9995ce8f9b916a80b2aa81bc69bba4.zip |
Diffstat (limited to 'src/entities/Automobile.h')
-rw-r--r-- | src/entities/Automobile.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/entities/Automobile.h b/src/entities/Automobile.h index 246943a7..64e411ce 100644 --- a/src/entities/Automobile.h +++ b/src/entities/Automobile.h @@ -25,6 +25,8 @@ public: CAutomobile(int, uint8); CAutomobile* ctor(int, uint8); void SetDoorDamage(int32, uint32, bool); /* TODO: eDoors */ + void SetPanelDamage(int32, uint32, bool); /* TODO: ePanels */ + void SetBumperDamage(int32, uint32, bool); /* TODO: ePanels */ void dtor() { this->CAutomobile::~CAutomobile(); } }; static_assert(sizeof(CAutomobile) == 0x5A8, "CAutomobile: error"); |