mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 03:02:30 +00:00
chore: initial commit
This commit is contained in:
commit
70b00c5c38
965 changed files with 264882 additions and 0 deletions
39
src/gx/CGxStateBom.hpp
Normal file
39
src/gx/CGxStateBom.hpp
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
#ifndef GX_C_GX_STATE_BOM_HPP
|
||||
#define GX_C_GX_STATE_BOM_HPP
|
||||
|
||||
#include <cstdint>
|
||||
|
||||
class C3Vector;
|
||||
class CImVector;
|
||||
|
||||
class CGxStateBom {
|
||||
public:
|
||||
// Member variables
|
||||
union {
|
||||
int32_t i[3];
|
||||
float f[3];
|
||||
void* p;
|
||||
} m_data;
|
||||
|
||||
int32_t filler;
|
||||
|
||||
// Member functions
|
||||
const CGxStateBom& operator=(float);
|
||||
const CGxStateBom& operator=(int32_t);
|
||||
const CGxStateBom& operator=(uint32_t);
|
||||
const CGxStateBom& operator=(void*);
|
||||
const CGxStateBom& operator=(C3Vector&);
|
||||
bool operator!=(float);
|
||||
bool operator!=(int32_t);
|
||||
bool operator!=(uint32_t);
|
||||
bool operator!=(void*);
|
||||
bool operator!=(C3Vector&);
|
||||
bool operator!=(CGxStateBom&);
|
||||
explicit operator CImVector() const;
|
||||
explicit operator float() const;
|
||||
explicit operator int32_t() const;
|
||||
explicit operator uint32_t() const;
|
||||
explicit operator void*() const;
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue