mirror of
https://github.com/GTAmodding/re3.git
synced 2025-07-08 05:04:09 +00:00
Try to build with mingw
This commit is contained in:
parent
0f07a323c9
commit
370c4e48cd
90 changed files with 1107 additions and 1051 deletions
|
@ -9,6 +9,11 @@ public:
|
|||
#ifdef RWCORE_H
|
||||
CVector(const RwV3d &v) : x(v.x), y(v.y), z(v.z) {}
|
||||
|
||||
RwV3d toRwV3d(void) const {
|
||||
RwV3d vecRw = { this->x, this->y, this->z };
|
||||
return vecRw;
|
||||
}
|
||||
|
||||
operator RwV3d (void) const {
|
||||
RwV3d vecRw = { this->x, this->y, this->z };
|
||||
return vecRw;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue