mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-05 11:15:04 +00:00
22 lines
No EOL
306 B
C++
22 lines
No EOL
306 B
C++
/**
|
|
* @file Float2.h
|
|
* @brief Some odd float implementation that I don't understand yet...
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "types.h"
|
|
|
|
namespace nn
|
|
{
|
|
namespace util
|
|
{
|
|
struct Float2
|
|
{
|
|
u64 _0;
|
|
u64 _8;
|
|
u64 _10;
|
|
u64 _18;
|
|
};
|
|
};
|
|
}; |