BrawlCrate v0.41
Wii File Editor
Loading...
Searching...
No Matches
Public Member Functions | Static Public Member Functions | Public Attributes | Properties | List of all members
BrawlLib.Internal.bushort Struct Reference

Public Member Functions

override string ToString ()
 

Static Public Member Functions

static implicit operator ushort (bushort val)
 
static implicit operator bushort (ushort val)
 
static operator short (bushort val)
 
static operator bushort (short val)
 

Public Attributes

ushort _data
 

Properties

VoidPtr Address [get]
 
ushort Value [get]
 

Member Function Documentation

◆ operator bushort() [1/2]

static BrawlLib.Internal.bushort.operator bushort ( short  val)
inlineexplicitstatic
211 {
212 return new bushort {_data = (ushort) val.Reverse()};
213 }
ushort _data
Definition: BigEndianTypes.cs:193

◆ operator bushort() [2/2]

static implicit BrawlLib.Internal.bushort.operator bushort ( ushort  val)
inlinestatic
201 {
202 return new bushort {_data = val.Reverse()};
203 }

◆ operator short()

static BrawlLib.Internal.bushort.operator short ( bushort  val)
inlineexplicitstatic
206 {
207 return (short) val._data.Reverse();
208 }

◆ operator ushort()

static implicit BrawlLib.Internal.bushort.operator ushort ( bushort  val)
inlinestatic
196 {
197 return val._data.Reverse();
198 }

◆ ToString()

override string BrawlLib.Internal.bushort.ToString ( )
inline
229 {
230 return Value.ToString();
231 }
ushort Value
Definition: BigEndianTypes.cs:226

Member Data Documentation

◆ _data

ushort BrawlLib.Internal.bushort._data

Property Documentation

◆ Address

VoidPtr BrawlLib.Internal.bushort.Address
get
216 {
217 get
218 {
219 fixed (void* p = &this)
220 {
221 return p;
222 }
223 }
224 }

◆ Value

ushort BrawlLib.Internal.bushort.Value
get

The documentation for this struct was generated from the following file: