mirror of
https://github.com/halpz/re3.git
synced 2025-07-22 10:39:47 +00:00
more high level functions
This commit is contained in:
5
src/entities/Heli.cpp
Normal file
5
src/entities/Heli.cpp
Normal file
@ -0,0 +1,5 @@
|
||||
#include "common.h"
|
||||
#include "patcher.h"
|
||||
#include "Heli.h"
|
||||
|
||||
WRAPPER void CHeli::SpecialHeliPreRender(void) { EAXJMP(0x54AE10); }
|
13
src/entities/Heli.h
Normal file
13
src/entities/Heli.h
Normal file
@ -0,0 +1,13 @@
|
||||
#pragma once
|
||||
|
||||
#include "Vehicle.h"
|
||||
|
||||
class CHeli : public CVehicle
|
||||
{
|
||||
public:
|
||||
// 0x288
|
||||
uint8 stuff[180];
|
||||
|
||||
static void SpecialHeliPreRender(void);
|
||||
};
|
||||
static_assert(sizeof(CHeli) == 0x33C, "CHeli: error");
|
Reference in New Issue
Block a user