◆ operator bfloat() [1/2]
static implicit BrawlLib.Internal.bfloat.operator bfloat |
( |
byte[] |
val | ) |
|
|
inlinestatic |
123 {
124 return new bfloat {
_data = BitConverter.ToSingle(val, 0)};
125 }
float _data
Definition: BigEndianTypes.cs:110
◆ operator bfloat() [2/2]
static implicit BrawlLib.Internal.bfloat.operator bfloat |
( |
float |
val | ) |
|
|
inlinestatic |
118 {
119 return new bfloat {
_data = val.Reverse()};
120 }
◆ operator float()
static implicit BrawlLib.Internal.bfloat.operator float |
( |
bfloat |
val | ) |
|
|
inlinestatic |
113 {
114 return val._data.Reverse();
115 }
◆ ToString()
override string BrawlLib.Internal.bfloat.ToString |
( |
| ) |
|
|
inline |
141 {
142 return Value.ToString();
143 }
float Value
Definition: BigEndianTypes.cs:138
◆ _data
float BrawlLib.Internal.bfloat._data |
◆ Address
VoidPtr BrawlLib.Internal.bfloat.Address |
|
get |
128 {
129 get
130 {
131 fixed (void* p = &this)
132 {
133 return p;
134 }
135 }
136 }
◆ Value
float BrawlLib.Internal.bfloat.Value |
|
get |
The documentation for this struct was generated from the following file:
- BrawlLib/Internal/BigEndianTypes.cs