Skip to content

Commit

Permalink
fix: add missing file
Browse files Browse the repository at this point in the history
  • Loading branch information
powerof3 committed Nov 21, 2023
1 parent f50682f commit c261dc6
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions CommonLibSF/include/RE/N/NiPoint4.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
#pragma once

namespace RE
{
class NiPoint4
{
public:
struct NiPoint4Struct
{
public:
// members
float x; // 00
float y; // 04
float z; // 08
float w; // 0C
};
static_assert(sizeof(NiPoint4Struct) == 0x10);

// members
union
{
NiPoint4Struct v;
float pt[4]{ 0.0F };
}; // 00
};
static_assert(sizeof(NiPoint4) == 0x10);
}

0 comments on commit c261dc6

Please sign in to comment.