1
0
mirror of synced 2024-09-24 11:38:22 +02:00
Switch-Toolbox/Toolbox/Lib/Syroot.NintenTools.NSW.Bntx.xml
2019-06-29 12:33:27 -04:00

2456 lines
142 KiB
XML

<?xml version="1.0"?>
<doc>
<assembly>
<name>Syroot.NintenTools.NSW.Bntx</name>
</assembly>
<members>
<member name="T:Syroot.NintenTools.NSW.Bntx.BntxFile">
<summary>
Represents a NintendoWare for Cafe (NW4F) graphics data archive file.
</summary>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.BntxFile.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syroot.NintenTools.NSW.Bntx.BntxFile"/> class.
</summary>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.BntxFile.#ctor(System.IO.Stream,System.Boolean)">
<summary>
Initializes a new instance of the <see cref="T:Syroot.NintenTools.NSW.Bntx.BntxFile"/> class from the given <paramref name="stream"/> which
is optionally left open.
</summary>
<param name="stream">The <see cref="T:System.IO.Stream"/> to load the data from.</param>
<param name="leaveOpen"><c>true</c> to leave the stream open after reading, otherwise <c>false</c>.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.BntxFile.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:Syroot.NintenTools.NSW.Bntx.BntxFile"/> class from the file with the given
<paramref name="fileName"/>.
</summary>
<param name="fileName">The name of the file to load the data from.</param>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.BntxFile.Name">
<summary>
Gets or sets a name describing the contents.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.BntxFile.PlatformTarget">
<summary>
Gets or sets the target platform as a string.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.BntxFile.VersionMajor">
<summary>
Gets or sets the major revision of the BNTX structure formats.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.BntxFile.VersionMajor2">
<summary>
Gets or sets the second major revision of the BNTX structure formats.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.BntxFile.VersionMinor">
<summary>
Gets or sets the minor revision of the BNTX structure formats.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.BntxFile.VersionMinor2">
<summary>
Gets or sets the second minor revision of the BNTX structure formats.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.BntxFile.ByteOrder">
<summary>
Gets the byte order in which data is stored. Must be the endianness of the target platform.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.BntxFile.Alignment">
<summary>
Gets or sets the alignment to use for raw data blocks in the file.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.BntxFile.DataAlignment">
<summary>
Gets or sets the data alignment to use for raw data blocks in the file.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.BntxFile.TargetAddressSize">
<summary>
Gets or sets the target adress size to use for raw data blocks in the file.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.BntxFile.Flag">
<summary>
Gets or sets the flag. Unknown purpose.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.BntxFile.BlockOffset">
<summary>
Gets or sets the BlockOffset.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.BntxFile.RelocationTable">
<summary>
Gets or sets the stored <see cref="P:Syroot.NintenTools.NSW.Bntx.BntxFile.RelocationTable"/> (_RLT) instance.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.BntxFile.Target">
<summary>
Gets or sets the target platform.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.BntxFile.Textures">
<summary>
Gets or sets a list of the stored <see cref="T:Syroot.NintenTools.NSW.Bntx.Texture"/> instances.
</summary>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.BntxFile.Save(System.IO.Stream,System.Boolean)">
<summary>
Saves the contents in the given <paramref name="stream"/> and optionally leaves it open
</summary>
<param name="stream">The <see cref="T:System.IO.Stream"/> to save the contents into.</param>
<param name="leaveOpen"><c>true</c> to leave the stream open after writing, otherwise <c>false</c>.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.BntxFile.Save(System.String)">
<summary>
Saves the contents in the file with the given <paramref name="fileName"/>.
</summary>
<param name="fileName">The name of the file to save the contents into.</param>
</member>
<member name="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5">
<summary>
Represents a 16-bit fixed-point decimal consisting of 1 sign bit, 10 integer bits and 5 fractional bits (denoted
as Q10.5). Note that the implementation is not reporting over- and underflowing errors.
</summary>
<remarks>
Examples:
SIIIIIII_IIIFFFFF
0b00000000_00010000 = 0.5
0b00000000_00100000 = 1
0b00000001_00000000 = 8
0b01000000_00000000 = 512
0b10000000_00000000 = -1024
</remarks>
</member>
<member name="F:Syroot.NintenTools.NSW.Bntx.Decimal10x5.MaxValue">
<summary>
Represents the largest possible value of <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/>.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bntx.Decimal10x5.MinValue">
<summary>
Represents the smallest possible value of <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/>.
</summary>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Decimal10x5.#ctor(System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/> struct from the given <paramref name="raw"/>
representation.
</summary>
<param name="raw">The raw representation of the internally stored bits.</param>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.Decimal10x5.Raw">
<summary>
Gets the internally stored value to represent the instance.
</summary>
<remarks>Signed to get arithmetic rather than logical shifts.</remarks>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Decimal10x5.op_UnaryPlus(Syroot.NintenTools.NSW.Bntx.Decimal10x5)">
<summary>
Returns the given <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/>.
</summary>
<param name="a">The <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/>.</param>
<returns>The result.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Decimal10x5.op_Addition(Syroot.NintenTools.NSW.Bntx.Decimal10x5,Syroot.NintenTools.NSW.Bntx.Decimal10x5)">
<summary>
Adds the first <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/> to the second one.
</summary>
<param name="a">The first <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/>.</param>
<param name="b">The second <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/>.</param>
<returns>The addition result.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Decimal10x5.op_UnaryNegation(Syroot.NintenTools.NSW.Bntx.Decimal10x5)">
<summary>
Negates the given <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/>.
</summary>
<param name="a">The <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/> to negate.</param>
<returns>The negated result.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Decimal10x5.op_Subtraction(Syroot.NintenTools.NSW.Bntx.Decimal10x5,Syroot.NintenTools.NSW.Bntx.Decimal10x5)">
<summary>
Subtracts the first <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/> from the second one.
</summary>
<param name="a">The first <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/>.</param>
<param name="b">The second <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/>.</param>
<returns>The subtraction result.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Decimal10x5.op_Multiply(Syroot.NintenTools.NSW.Bntx.Decimal10x5,System.Int32)">
<summary>
Multiplicates the given <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/> by the scalar.
</summary>
<param name="a">The <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/>.</param>
<param name="s">The scalar.</param>
<returns>The multiplication result.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Decimal10x5.op_Multiply(Syroot.NintenTools.NSW.Bntx.Decimal10x5,Syroot.NintenTools.NSW.Bntx.Decimal10x5)">
<summary>
Multiplicates the first <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/> by the second one.
</summary>
<param name="a">The first <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/>.</param>
<param name="b">The second <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/>.</param>
<returns>The multiplication result.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Decimal10x5.op_Division(Syroot.NintenTools.NSW.Bntx.Decimal10x5,System.Int32)">
<summary>
Divides the given <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/> through the scalar.
</summary>
<param name="a">The <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/>.</param>
<param name="s">The scalar.</param>
<returns>The division result.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Decimal10x5.op_Division(Syroot.NintenTools.NSW.Bntx.Decimal10x5,Syroot.NintenTools.NSW.Bntx.Decimal10x5)">
<summary>
Divides the first <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/> through the second one.
</summary>
<param name="a">The first <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/>.</param>
<param name="b">The second <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/>.</param>
<returns>The division result.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Decimal10x5.op_Equality(Syroot.NintenTools.NSW.Bntx.Decimal10x5,Syroot.NintenTools.NSW.Bntx.Decimal10x5)">
<summary>
Gets a value indicating whether the first specified <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/> is the same as the second
specified <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/>.
</summary>
<param name="a">The first <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/> to compare.</param>
<param name="b">The second <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/> to compare.</param>
<returns>true, if both <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/> are the same.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Decimal10x5.op_Inequality(Syroot.NintenTools.NSW.Bntx.Decimal10x5,Syroot.NintenTools.NSW.Bntx.Decimal10x5)">
<summary>
Gets a value indicating whether the first specified <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/> is not the same as the second
specified <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/>.
</summary>
<param name="a">The first <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/> to compare.</param>
<param name="b">The second <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/> to compare.</param>
<returns>true, if both <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/> are not the same.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Decimal10x5.op_Explicit(System.Int32)~Syroot.NintenTools.NSW.Bntx.Decimal10x5">
<summary>
Converts the given <paramref name="value"/> value to a <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/> instance.
</summary>
<param name="value">The <see cref="T:System.Int32"/> value to represent in the new <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/>
instance.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Decimal10x5.op_Explicit(System.Double)~Syroot.NintenTools.NSW.Bntx.Decimal10x5">
<summary>
Converts the given <paramref name="value"/> value to a <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/> instance.
</summary>
<param name="value">The <see cref="T:System.Double"/> value to represent in the new <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/>
instance.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Decimal10x5.op_Explicit(System.Single)~Syroot.NintenTools.NSW.Bntx.Decimal10x5">
<summary>
Converts the given <paramref name="value"/> value to a <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/> instance.
</summary>
<param name="value">The <see cref="T:System.Single"/> value to represent in the new <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/>
instance.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Decimal10x5.op_Explicit(Syroot.NintenTools.NSW.Bntx.Decimal10x5)~System.Double">
<summary>
Converts the given <paramref name="value"/> value to a <see cref="T:System.Double"/> instance.
</summary>
<param name="value">The <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/> value to represent in the new <see cref="T:System.Double"/>
instance.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Decimal10x5.op_Explicit(Syroot.NintenTools.NSW.Bntx.Decimal10x5)~System.Int32">
<summary>
Converts the given <paramref name="value"/> value to a <see cref="T:System.Int32"/> instance.
</summary>
<param name="value">The <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/> value to represent in the new <see cref="T:System.Int32"/>
instance.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Decimal10x5.op_Explicit(Syroot.NintenTools.NSW.Bntx.Decimal10x5)~System.Single">
<summary>
Converts the given <paramref name="value"/> value to a <see cref="T:System.Single"/> instance.
</summary>
<param name="value">The <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/> value to represent in the new <see cref="T:System.Single"/>
instance.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Decimal10x5.Equals(System.Object)">
<summary>
Gets a value indicating whether this <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/> is the same as the second specified
<see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/>.
</summary>
<param name="obj">The object to compare, if it is a <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/>.</param>
<returns>true, if both <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/> are the same.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Decimal10x5.GetHashCode">
<summary>
Gets a hash code as an indication for object equality.
</summary>
<returns>The hash code.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Decimal10x5.ToString">
<summary>
Gets a string describing this <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/>.
</summary>
<returns>A string describing this <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/>.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Decimal10x5.Equals(Syroot.NintenTools.NSW.Bntx.Decimal10x5)">
<summary>
Indicates whether the current <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/> is equal to another <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/>.
</summary>
<param name="other">A <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/> to compare with this <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/>.</param>
<returns>true if the current <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/> is equal to the other parameter; otherwise, false.
</returns>
</member>
<member name="T:Syroot.NintenTools.NSW.Bntx.DWord">
<summary>
Represents a 4-byte value which can hold differently typed data.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bntx.DWord.Int32">
<summary>
The data as an <see cref="F:Syroot.NintenTools.NSW.Bntx.DWord.Int32"/>.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bntx.DWord.Single">
<summary>
The data as a <see cref="F:Syroot.NintenTools.NSW.Bntx.DWord.Single"/>.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bntx.DWord.UInt32">
<summary>
The data as an <see cref="F:Syroot.NintenTools.NSW.Bntx.DWord.UInt32"/>.
</summary>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.DWord.op_Implicit(System.Int32)~Syroot.NintenTools.NSW.Bntx.DWord">
<summary>
Converts the given <paramref name="value"/> value to a <see cref="T:Syroot.NintenTools.NSW.Bntx.DWord"/> instance.
</summary>
<param name="value">The <see cref="F:Syroot.NintenTools.NSW.Bntx.DWord.Int32"/> value to represent in the new <see cref="T:Syroot.NintenTools.NSW.Bntx.DWord"/> instance.
</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.DWord.op_Implicit(System.Single)~Syroot.NintenTools.NSW.Bntx.DWord">
<summary>
Converts the given <paramref name="value"/> value to a <see cref="T:Syroot.NintenTools.NSW.Bntx.DWord"/> instance.
</summary>
<param name="value">The <see cref="F:Syroot.NintenTools.NSW.Bntx.DWord.Single"/> value to represent in the new <see cref="T:Syroot.NintenTools.NSW.Bntx.DWord"/> instance.
</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.DWord.op_Implicit(System.UInt32)~Syroot.NintenTools.NSW.Bntx.DWord">
<summary>
Converts the given <paramref name="value"/> value to a <see cref="T:Syroot.NintenTools.NSW.Bntx.DWord"/> instance.
</summary>
<param name="value">The <see cref="F:Syroot.NintenTools.NSW.Bntx.DWord.UInt32"/> value to represent in the new <see cref="T:Syroot.NintenTools.NSW.Bntx.DWord"/> instance.
</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.DWord.op_Implicit(Syroot.NintenTools.NSW.Bntx.DWord)~System.Int32">
<summary>
Converts the given <paramref name="value"/> value to an <see cref="F:Syroot.NintenTools.NSW.Bntx.DWord.Int32"/> instance.
</summary>
<param name="value">The <see cref="T:Syroot.NintenTools.NSW.Bntx.DWord"/> value to represent in the new <see cref="F:Syroot.NintenTools.NSW.Bntx.DWord.Int32"/> instance.
</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.DWord.op_Implicit(Syroot.NintenTools.NSW.Bntx.DWord)~System.Single">
<summary>
Converts the given <paramref name="value"/> value to a <see cref="F:Syroot.NintenTools.NSW.Bntx.DWord.Single"/> instance.
</summary>
<param name="value">The <see cref="T:Syroot.NintenTools.NSW.Bntx.DWord"/> value to represent in the new <see cref="F:Syroot.NintenTools.NSW.Bntx.DWord.Single"/> instance.
</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.DWord.op_Implicit(Syroot.NintenTools.NSW.Bntx.DWord)~System.UInt32">
<summary>
Converts the given <paramref name="value"/> value to an <see cref="F:Syroot.NintenTools.NSW.Bntx.DWord.UInt32"/> instance.
</summary>
<param name="value">The <see cref="T:Syroot.NintenTools.NSW.Bntx.DWord"/> value to represent in the new <see cref="F:Syroot.NintenTools.NSW.Bntx.DWord.UInt32"/> instance.
</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.DWord.GetTypeCode">
<summary>
Returns the <see cref="T:System.TypeCode"/> for this instance.
</summary>
<returns>The enumerated constant that is the <see cref="T:System.TypeCode"/> of the class or value type that
implements this interface.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.DWord.ToBoolean(System.IFormatProvider)">
<summary>
This operation is not supported.
</summary>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.DWord.ToByte(System.IFormatProvider)">
<summary>
This operation is not supported.
</summary>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.DWord.ToChar(System.IFormatProvider)">
<summary>
This operation is not supported.
</summary>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.DWord.ToDateTime(System.IFormatProvider)">
<summary>
This operation is not supported.
</summary>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.DWord.ToDecimal(System.IFormatProvider)">
<summary>
This operation is not supported.
</summary>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.DWord.ToDouble(System.IFormatProvider)">
<summary>
Converts the value of this instance to an equivalent double-precision floating-point number using the
specified culture-specific formatting information.
</summary>
<param name="provider">An <see cref="T:System.IFormatProvider"/> interface implementation that supplies
culture-specific formatting information.</param>
<returns>A double-precision floating-point number equivalent to the value of this instance.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.DWord.ToInt16(System.IFormatProvider)">
<summary>
This operation is not supported.
</summary>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.DWord.ToInt32(System.IFormatProvider)">
<summary>
Converts the value of this instance to an equivalent 32-bit signed integer using the specified
culture-specific formatting information.
</summary>
<param name="provider">An <see cref="T:System.IFormatProvider"/> interface implementation that supplies
culture-specific formatting information.</param>
<returns>An 32-bit signed integer equivalent to the value of this instance.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.DWord.ToInt64(System.IFormatProvider)">
<summary>
Converts the value of this instance to an equivalent 64-bit signed integer using the specified
culture-specific formatting information.
</summary>
<param name="provider">An <see cref="T:System.IFormatProvider"/> interface implementation that supplies
culture-specific formatting information.</param>
<returns>An 64-bit signed integer equivalent to the value of this instance.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.DWord.ToSByte(System.IFormatProvider)">
<summary>
This operation is not supported.
</summary>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.DWord.ToSingle(System.IFormatProvider)">
<summary>
Converts the value of this instance to an equivalent single-precision floating-point number using the
specified culture-specific formatting information.
</summary>
<param name="provider">An <see cref="T:System.IFormatProvider"/> interface implementation that supplies
culture-specific formatting information.</param>
<returns>A single-precision floating-point number equivalent to the value of this instance.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.DWord.ToString(System.IFormatProvider)">
<summary>
This operation is not supported.
</summary>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.DWord.ToType(System.Type,System.IFormatProvider)">
<summary>
Converts the value of this instance to an <see cref="T:System.Object"/> of the specified <see cref="T:System.Type"/> that has
an equivalent value, using the specified culture-specific formatting information.
</summary>
<param name="conversionType">The <see cref="T:System.Type"/> to which the value of this instance is converted.
</param>
<param name="provider">An <see cref="T:System.IFormatProvider"/> interface implementation that supplies
culture-specific formatting information.</param>
<returns>An <see cref="T:System.Object"/> instance of type conversionType whose value is equivalent to the value of
this instance.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.DWord.ToUInt16(System.IFormatProvider)">
<summary>
This operation is not supported.
</summary>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.DWord.ToUInt32(System.IFormatProvider)">
<summary>
This operation is not supported.
</summary>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.DWord.ToUInt64(System.IFormatProvider)">
<summary>
This operation is not supported.
</summary>
</member>
<member name="T:Syroot.NintenTools.NSW.Bntx.Half">
<summary>
Represents a 16-bit half-precision floating point value according to the IEEE 754 standard.
</summary>
<remarks>
Examples:
SEEEEEFF_FFFFFFFF
0b00000000_00000000 = 0
1b00000000_00000000 = -0
0b00111100_00000000 = 1
0b11000000_00000000 = -2
0b11111011_11111111 = 65504 (MaxValue)
0b01111100_00000000 = PositiveInfinity
0b11111100_00000000 = NegativeInfinity
</remarks>
</member>
<member name="F:Syroot.NintenTools.NSW.Bntx.Half.Epsilon">
<summary>
Represents the smallest positive <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/> value greater than zero.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bntx.Half.MaxValue">
<summary>
Represents the largest possible value of <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/>.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bntx.Half.MinValue">
<summary>
Represents the smallest possible value of <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/>.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bntx.Half.NaN">
<summary>
Represents not a number (NaN).
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bntx.Half.NegativeInfinity">
<summary>
Represents negative infinity.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bntx.Half.PositiveInfinity">
<summary>
Represents positive infinity.
</summary>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Half.#ctor(System.UInt16)">
<summary>
Initializes a new instance of the <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/> struct from the given <paramref name="raw"/>
representation.
</summary>
<param name="raw">The raw representation of the internally stored bits.</param>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.Half.Raw">
<summary>
Gets the internally stored value to represent the instance.
</summary>
<remarks>Signed to get arithmetic rather than logical shifts.</remarks>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Half.op_UnaryPlus(Syroot.NintenTools.NSW.Bntx.Half)">
<summary>
Returns the given <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/>.
</summary>
<param name="a">The <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/>.</param>
<returns>The result.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Half.op_Addition(Syroot.NintenTools.NSW.Bntx.Half,Syroot.NintenTools.NSW.Bntx.Half)">
<summary>
Adds the first <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/> to the second one.
</summary>
<param name="a">The first <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/>.</param>
<param name="b">The second <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/>.</param>
<returns>The addition result.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Half.op_UnaryNegation(Syroot.NintenTools.NSW.Bntx.Half)">
<summary>
Negates the given <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/>.
</summary>
<param name="a">The <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/> to negate.</param>
<returns>The negated result.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Half.op_Subtraction(Syroot.NintenTools.NSW.Bntx.Half,Syroot.NintenTools.NSW.Bntx.Half)">
<summary>
Subtracts the first <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/> from the second one.
</summary>
<param name="a">The first <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/>.</param>
<param name="b">The second <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/>.</param>
<returns>The subtraction result.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Half.op_Multiply(Syroot.NintenTools.NSW.Bntx.Half,Syroot.NintenTools.NSW.Bntx.Half)">
<summary>
Multiplicates the first <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/> by the second one.
</summary>
<param name="a">The first <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/>.</param>
<param name="b">The second <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/>.</param>
<returns>The multiplication result.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Half.op_Division(Syroot.NintenTools.NSW.Bntx.Half,Syroot.NintenTools.NSW.Bntx.Half)">
<summary>
Divides the first <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/> through the second one.
</summary>
<param name="a">The first <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/>.</param>
<param name="b">The second <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/>.</param>
<returns>The division result.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Half.op_Equality(Syroot.NintenTools.NSW.Bntx.Half,Syroot.NintenTools.NSW.Bntx.Half)">
<summary>
Gets a value indicating whether the first specified <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/> is the same as the second
specified <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/>.
</summary>
<param name="a">The first <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/> to compare.</param>
<param name="b">The second <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/> to compare.</param>
<returns>true, if both <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/> are the same.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Half.op_Inequality(Syroot.NintenTools.NSW.Bntx.Half,Syroot.NintenTools.NSW.Bntx.Half)">
<summary>
Gets a value indicating whether the first specified <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/> is not the same as the second
specified <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/>.
</summary>
<param name="a">The first <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/> to compare.</param>
<param name="b">The second <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/> to compare.</param>
<returns>true, if both <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/> are not the same.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Half.op_Explicit(System.Int32)~Syroot.NintenTools.NSW.Bntx.Half">
<summary>
Converts the given <paramref name="value"/> value to a <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/> instance.
</summary>
<param name="value">The <see cref="T:System.Int32"/> value to represent in the new <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/>
instance.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Half.op_Explicit(System.Double)~Syroot.NintenTools.NSW.Bntx.Half">
<summary>
Converts the given <paramref name="value"/> value to a <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/> instance.
</summary>
<param name="value">The <see cref="T:System.Double"/> value to represent in the new <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/>
instance.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Half.op_Explicit(System.Single)~Syroot.NintenTools.NSW.Bntx.Half">
<summary>
Converts the given <paramref name="value"/> value to a <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/> instance.
</summary>
<param name="value">The <see cref="T:System.Single"/> value to represent in the new <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/>
instance.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Half.op_Implicit(Syroot.NintenTools.NSW.Bntx.Half)~System.Double">
<summary>
Converts the given <paramref name="value"/> value to a <see cref="T:System.Double"/> instance.
</summary>
<param name="value">The <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/> value to represent in the new <see cref="T:System.Double"/>
instance.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Half.op_Explicit(Syroot.NintenTools.NSW.Bntx.Half)~System.Int32">
<summary>
Converts the given <paramref name="value"/> value to a <see cref="T:System.Int32"/> instance.
</summary>
<param name="value">The <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/> value to represent in the new <see cref="T:System.Int32"/>
instance.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Half.op_Implicit(Syroot.NintenTools.NSW.Bntx.Half)~System.Single">
<summary>
Converts the given <paramref name="value"/> value to a <see cref="T:System.Single"/> instance.
</summary>
<param name="value">The <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/> value to represent in the new <see cref="T:System.Single"/>
instance.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Half.Equals(System.Object)">
<summary>
Gets a value indicating whether this <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/> is the same as the second specified
<see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/>.
</summary>
<param name="obj">The object to compare, if it is a <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/>.</param>
<returns>true, if both <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/> are the same.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Half.GetHashCode">
<summary>
Gets a hash code as an indication for object equality.
</summary>
<returns>The hash code.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Half.ToString">
<summary>
Gets a string describing this <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/>.
</summary>
<returns>A string describing this <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/>.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Half.Equals(Syroot.NintenTools.NSW.Bntx.Half)">
<summary>
Indicates whether the current <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/> is equal to another <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/>.
</summary>
<param name="other">A <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/> to compare with this <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/>.</param>
<returns>true if the current <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/> is equal to the other parameter; otherwise, false.
</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Half.IsNaN(Syroot.NintenTools.NSW.Bntx.Half)">
<summary>
Returns a value indicating whether the specified number evaluates to not a number (<see cref="F:Syroot.NintenTools.NSW.Bntx.Half.NaN"/>).
</summary>
<param name="half">A half-precision floating-point number.</param>
<returns><c>true</c> if value evaluates to not a number (<see cref="F:Syroot.NintenTools.NSW.Bntx.Half.NaN"/>); otherwise <c>false</c>.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Half.IsInfinity(Syroot.NintenTools.NSW.Bntx.Half)">
<summary>
Returns a value indicating whether the specified number evaluates to negative or positive infinity.
</summary>
<param name="half">A half-precision floating-point number.</param>
<returns><c>true</c> if half evaluates to <see cref="F:Syroot.NintenTools.NSW.Bntx.Half.PositiveInfinity"/> or <see cref="F:Syroot.NintenTools.NSW.Bntx.Half.NegativeInfinity"/>;
otherwise <c>false</c>.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Half.IsNegativeInfinity(Syroot.NintenTools.NSW.Bntx.Half)">
<summary>
Returns a value indicating whether the specified number evaluates to negative infinity.
</summary>
<param name="half">A half-precision floating-point number.</param>
<returns><c>true</c> if half evaluates to <see cref="F:Syroot.NintenTools.NSW.Bntx.Half.NegativeInfinity"/>; otherwise <c>false</c>.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Half.IsPositiveInfinity(Syroot.NintenTools.NSW.Bntx.Half)">
<summary>
Returns a value indicating whether the specified number evaluates to positive infinity.
</summary>
<param name="half">A half-precision floating-point number.</param>
<returns><c>true</c> if half evaluates to <see cref="F:Syroot.NintenTools.NSW.Bntx.Half.PositiveInfinity"/>; otherwise <c>false</c>.</returns>
</member>
<member name="T:Syroot.NintenTools.NSW.Bntx.Buffer">
<summary>
Represents a buffer of data uploaded to the GPU which can hold arbitrary data.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.Buffer.Stride">
<summary>
The size of a full vertex in bytes.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.Buffer.Data">
<summary>
The raw bytes stored for each buffering.
</summary>
</member>
<member name="T:Syroot.NintenTools.NSW.Bntx.BufferMemoryPool">
<summary>
Represents an memory pool section in a <see cref="T:Syroot.NintenTools.NSW.Bntx.BntxFile"/> subfile, storing memory.
</summary>
</member>
<member name="T:Syroot.NintenTools.NSW.Bntx.BufferMemoryPoolInfo">
<summary>
Represents an memory info section in a <see cref="T:Syroot.NintenTools.NSW.Bntx.BntxFile"/> subfile. References vertex and index buffers
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.BufferMemoryPoolInfo.BufferOffset">
<summary>
Gets or sets the buffer instance that stores face data first, then vertex buffer after.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.BufferMemoryPoolInfo.Property">
<summary>
Gets or sets the memory pool property
</summary>
</member>
<member name="T:Syroot.NintenTools.NSW.Bntx.RelocationTable">
<summary>
Represents an _RLT section in a <see cref="T:Syroot.NintenTools.NSW.Bntx.BntxFile"/> subfile, storing pointers to sections in a Bntx.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.RelocationTable.position">
<summary>
Gets or sets the <see cref="!:VertexBuffer"/> instance storing the data which forms the shape's surface. Saved
depending on <see cref="!:VertexBufferIndex"/>.
</summary>
</member>
<member name="T:Syroot.NintenTools.NSW.Bntx.ResDict">
<summary>
Represents the non-generic base of a dictionary which can quickly look up <see cref="T:Syroot.NintenTools.NSW.Bntx.Core.IResData"/> instances via
key or index.
</summary>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.ResDict.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syroot.NintenTools.NSW.Bntx.ResDict"/> class.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.ResDict.Count">
<summary>
Gets the number of instances stored.
</summary>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.ResDict.Add(System.String)">
<summary>
Adds the given <paramref name="key"/> to insert in the dictionary.
</summary>
<exception cref="T:System.ArgumentException">Duplicated <paramref name="key"/> instances
already exists.</exception>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.ResDict.Remove(System.String)">
<summary>
Removes the given <paramref name="key"/> from the dictionary.
</summary>
<exception cref="T:System.ArgumentException">Duplicated <paramref name="key"/> instances
already exists.</exception>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.ResDict.ContainsKey(System.String)">
<summary>
Determines whether the given <paramref name="key"/> is in the dictionary.
</summary>
<returns><c>true</c> if <paramref name="key"/> was found in the dictionary; otherwise <c>false</c>.
</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.ResDict.GetKey(System.Int32)">
<summary>
Returns the key given <paramref name="index"/> is within range of the dictionary.
</summary>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.ResDict.SetKey(System.Int32,System.String)">
<summary>
Returns the key given <paramref name="index"/> is within range of the dictionary.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.ResDict.Item(System.Int32)">
<summary>
Gets or sets the <see cref="T:Syroot.NintenTools.NSW.Bntx.Core.IResData"/> instance stored at the specified <paramref name="index"/>.
</summary>
<param name="index">The 0-based index of the <see cref="T:Syroot.NintenTools.NSW.Bntx.Core.IResData"/> instance to get or set.</param>
<returns>The <see cref="T:Syroot.NintenTools.NSW.Bntx.Core.IResData"/> at the specified <paramref name="index"/>.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">The index is smaller than 0 or bigger or equal to
<see cref="P:Syroot.NintenTools.NSW.Bntx.ResDict.Count"/>.</exception>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.ResDict.IndexOf(System.String)">
<summary>
Searches for the specified <paramref name="value"/> and returns the zero-based index of the first occurrence
within the entire dictionary.
</summary>
<param name="value">The <see cref="T:Syroot.NintenTools.NSW.Bntx.Core.IResData"/> instance to locate in the dictionary. The value can be
<c>null</c>.</param>
<returns>The zero-based index of the first occurence of <paramref name="value"/> within the entire
dictionary if found; otherwise <c>-1</c>.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.ResDict.Clear">
<summary>
Removes all elements from the dictionary.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.ResDict.Nodes">
<summary>
Returns only the publically visible nodes, excluding the root node.
</summary>
</member>
<member name="T:Syroot.NintenTools.NSW.Bntx.ResDict.Node">
<summary>
Represents a node forming the Patricia trie of the dictionary.
</summary>
</member>
<member name="T:Syroot.NintenTools.NSW.Bntx.ResString">
<summary>
Represents a <see cref="P:Syroot.NintenTools.NSW.Bntx.ResString.String"/> which is stored in a <see cref="T:Syroot.NintenTools.NSW.Bntx.BntxFile"/>.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.ResString.String">
<summary>
The textual <see cref="P:Syroot.NintenTools.NSW.Bntx.ResString.String"/> represented by this instance.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.ResString.Encoding">
<summary>
The <see cref="P:Syroot.NintenTools.NSW.Bntx.ResString.Encoding"/> with which this string was read or will be written.
</summary>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.ResString.op_Implicit(System.String)~Syroot.NintenTools.NSW.Bntx.ResString">
<summary>
Converts the given <paramref name="value"/> value to a <see cref="T:Syroot.NintenTools.NSW.Bntx.ResString"/> instance.
</summary>
<param name="value">The <see cref="P:Syroot.NintenTools.NSW.Bntx.ResString.String"/> value to represent in the new <see cref="T:Syroot.NintenTools.NSW.Bntx.ResString"/> instance.
</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.ResString.op_Implicit(Syroot.NintenTools.NSW.Bntx.ResString)~System.String">
<summary>
Converts the given <paramref name="value"/> value to an <see cref="P:Syroot.NintenTools.NSW.Bntx.ResString.String"/> instance.
</summary>
<param name="value">The <see cref="T:Syroot.NintenTools.NSW.Bntx.ResString"/> value to represent in the new <see cref="P:Syroot.NintenTools.NSW.Bntx.ResString.String"/> instance.
</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.ResString.ToString">
<summary>
Returns the value of the <see cref="P:Syroot.NintenTools.NSW.Bntx.ResString.String"/> property.
</summary>
<returns>The value of the <see cref="P:Syroot.NintenTools.NSW.Bntx.ResString.String"/> property.</returns>
</member>
<member name="T:Syroot.NintenTools.NSW.Bntx.Srt2D">
<summary>
Represents a 2D transformation.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bntx.Srt2D.SizeInBytes">
<summary>
The size of this structure.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bntx.Srt2D.Scaling">
<summary>
The scaling amount of the transformation.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bntx.Srt2D.Rotation">
<summary>
The rotation angle of the transformation.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bntx.Srt2D.Translation">
<summary>
The translation amount of the transformation.
</summary>
</member>
<member name="T:Syroot.NintenTools.NSW.Bntx.Srt3D">
<summary>
Represents a 3D transformation.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bntx.Srt3D.SizeInBytes">
<summary>
The size of this structure.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bntx.Srt3D.Scaling">
<summary>
The scaling amount of the transformation.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bntx.Srt3D.Rotation">
<summary>
The rotation amount of the transformation.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bntx.Srt3D.Translation">
<summary>
The translation amount of the transformation.
</summary>
</member>
<member name="T:Syroot.NintenTools.NSW.Bntx.TexSrt">
<summary>
Represents a 2D texture transformation.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bntx.TexSrt.SizeInBytes">
<summary>
The size of this structure.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bntx.TexSrt.Mode">
<summary>
The <see cref="T:Syroot.NintenTools.NSW.Bntx.TexSrtMode"/> with which the transformation is applied.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bntx.TexSrt.Scaling">
<summary>
The scaling amount of the transformation.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bntx.TexSrt.Rotation">
<summary>
The rotation angle of the transformation.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bntx.TexSrt.Translation">
<summary>
The translation amount of the transformation.
</summary>
</member>
<member name="T:Syroot.NintenTools.NSW.Bntx.TexSrtEx">
<summary>
Represents a 2D texture transformation which is multiplied by a 3x4 matrix referenced at runtime by the
<see cref="F:Syroot.NintenTools.NSW.Bntx.TexSrtEx.MatrixPointer"/>.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bntx.TexSrtEx.SizeInBytes">
<summary>
The size of this structure.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bntx.TexSrtEx.Mode">
<summary>
The <see cref="T:Syroot.NintenTools.NSW.Bntx.TexSrtMode"/> with which the transformation is applied.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bntx.TexSrtEx.Scaling">
<summary>
The scaling amount of the transformation.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bntx.TexSrtEx.Rotation">
<summary>
The rotation angle of the transformation.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bntx.TexSrtEx.Translation">
<summary>
The translation amount of the transformation.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bntx.TexSrtEx.MatrixPointer">
<summary>
A pointer to a 3x4 matrix to multiply the transformation with. Set at runtime.
</summary>
</member>
<member name="T:Syroot.NintenTools.NSW.Bntx.TexSrtMode">
<summary>
Represents the texture transformation mode used in <see cref="T:Syroot.NintenTools.NSW.Bntx.TexSrt"/> and <see cref="T:Syroot.NintenTools.NSW.Bntx.TexSrtEx"/>.
</summary>
</member>
<member name="T:Syroot.NintenTools.NSW.Bntx.UserData">
<summary>
Represents custom user variables which can be attached to many sections and subfiles of a <see cref="!:ResFile"/>.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.UserData.Name">
<summary>
Gets or sets the name with which the instance can be referenced uniquely in <see cref="!:ResDict&lt;UserData&gt;"/>
instances.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.UserData.Type">
<summary>
The data type of the stored values.
</summary>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.UserData.GetValueInt32Array">
<summary>
Returns the stored value as an array of <see cref="T:System.Int32"/> instances when the <see cref="P:Syroot.NintenTools.NSW.Bntx.UserData.Type"/> is
<see cref="F:Syroot.NintenTools.NSW.Bntx.UserDataType.Int32"/>.
</summary>
<returns>The typed value.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.UserData.GetValueSingleArray">
<summary>
Returns the stored value as an array of <see cref="T:System.Single"/> instances when the <see cref="P:Syroot.NintenTools.NSW.Bntx.UserData.Type"/> is
<see cref="F:Syroot.NintenTools.NSW.Bntx.UserDataType.Single"/>.
</summary>
<returns>The typed value.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.UserData.GetValueStringArray">
<summary>
Returns the stored value as an array of <see cref="T:System.String"/> instances when the <see cref="P:Syroot.NintenTools.NSW.Bntx.UserData.Type"/> is
<see cref="F:Syroot.NintenTools.NSW.Bntx.UserDataType.String"/> or <see cref="F:Syroot.NintenTools.NSW.Bntx.UserDataType.WString"/>.
</summary>
<returns>The typed value.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.UserData.GetValueByteArray">
<summary>
Returns the stored value as an array of <see cref="T:System.Byte"/> instances when the <see cref="P:Syroot.NintenTools.NSW.Bntx.UserData.Type"/> is
<see cref="F:Syroot.NintenTools.NSW.Bntx.UserDataType.Byte"/>.
</summary>
<returns>The typed value.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.UserData.SetValue(System.Int32[])">
<summary>
Sets the stored <paramref name="value"/> as an <see cref="T:System.Int32"/> array and the <see cref="P:Syroot.NintenTools.NSW.Bntx.UserData.Type"/> to
<see cref="F:Syroot.NintenTools.NSW.Bntx.UserDataType.Int32"/>
</summary>
<param name="value">The value to store.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.UserData.SetValue(System.Single[])">
<summary>
Sets the stored <paramref name="value"/> as a <see cref="T:System.Single"/> array and the <see cref="P:Syroot.NintenTools.NSW.Bntx.UserData.Type"/> to
<see cref="F:Syroot.NintenTools.NSW.Bntx.UserDataType.Single"/>
</summary>
<param name="value">The value to store.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.UserData.SetValue(System.String[],System.Boolean)">
<summary>
Sets the stored <paramref name="value"/> as a <see cref="T:System.String"/> array and the <see cref="P:Syroot.NintenTools.NSW.Bntx.UserData.Type"/> to
<see cref="F:Syroot.NintenTools.NSW.Bntx.UserDataType.String"/> or <see cref="F:Syroot.NintenTools.NSW.Bntx.UserDataType.WString"/> depending on
<paramref name="asUnicode"/>.
</summary>
<param name="asUnicode"><c>true</c> to store data as UTF-16 encoded strings, or <c>false</c> to store it
as ASCII encoded strings.</param>
<param name="value">The value to store.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.UserData.SetValue(System.Byte[])">
<summary>
Sets the stored <paramref name="value"/> as a <see cref="T:System.Byte"/> array and the <see cref="P:Syroot.NintenTools.NSW.Bntx.UserData.Type"/> to
<see cref="F:Syroot.NintenTools.NSW.Bntx.UserDataType.Byte"/>
</summary>
<param name="value">The value to store.</param>
</member>
<member name="T:Syroot.NintenTools.NSW.Bntx.UserDataType">
<summary>
Represents the possible data types of values stored in <see cref="T:Syroot.NintenTools.NSW.Bntx.UserData"/> instances.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bntx.UserDataType.Int32">
<summary>
The values is an <see cref="F:Syroot.NintenTools.NSW.Bntx.UserDataType.Int32"/> array.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bntx.UserDataType.Single">
<summary>
The values is a <see cref="F:Syroot.NintenTools.NSW.Bntx.UserDataType.Single"/> array.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bntx.UserDataType.String">
<summary>
The values is a <see cref="F:Syroot.NintenTools.NSW.Bntx.UserDataType.String"/> array encoded in ASCII.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bntx.UserDataType.Byte">
<summary>
The values is a <see cref="F:Syroot.NintenTools.NSW.Bntx.UserDataType.Byte"/> array.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bntx.UserDataType.WString">
<summary>
The values is a <see cref="F:Syroot.NintenTools.NSW.Bntx.UserDataType.String"/> array encoded in UTF-16.
</summary>
</member>
<member name="T:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataReaderExtensions">
<summary>
Represents extension methods for the <see cref="T:Syroot.BinaryData.BinaryDataReader"/> class.
</summary>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataReaderExtensions.ReadDecimal10x5(Syroot.BinaryData.BinaryDataReader)">
<summary>
Reads a <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/> instance from the current stream and returns it.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataReader"/>.</param>
<returns>The <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/> instance.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataReaderExtensions.ReadDecimal10x5s(Syroot.BinaryData.BinaryDataReader,System.Int32)">
<summary>
Reads <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/> instances from the current stream and returns them.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataReader"/>.</param>
<param name="count">The number of instances to read.</param>
<returns>The <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/> instances.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataReaderExtensions.ReadHalf(Syroot.BinaryData.BinaryDataReader)">
<summary>
Reads a <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/> instance from the current stream and returns it.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataReader"/>.</param>
<returns>The <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/> instance.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataReaderExtensions.ReadHalfs(Syroot.BinaryData.BinaryDataReader,System.Int32)">
<summary>
Reads <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/> instances from the current stream and returns them.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataReader"/>.</param>
<param name="count">The number of instances to read.</param>
<returns>The <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/> instances.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataReaderExtensions.ReadMatrix3x4(Syroot.BinaryData.BinaryDataReader)">
<summary>
Reads a <see cref="T:Syroot.Maths.Matrix3x4"/> instance from the current stream and returns it.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataReader"/>.</param>
<returns>The <see cref="T:Syroot.Maths.Matrix3x4"/> instance.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataReaderExtensions.ReadMatrix3x4s(Syroot.BinaryData.BinaryDataReader,System.Int32)">
<summary>
Reads <see cref="T:Syroot.Maths.Matrix3x4"/> instances from the current stream and returns them.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataReader"/>.</param>
<param name="count">The number of instances to read.</param>
<returns>The <see cref="T:Syroot.Maths.Matrix3x4"/> instances.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataReaderExtensions.ReadVector2(Syroot.BinaryData.BinaryDataReader)">
<summary>
Reads a <see cref="T:Syroot.Maths.Vector2"/> instance from the current stream and returns it.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataReader"/>.</param>
<returns>The <see cref="T:Syroot.Maths.Vector2"/> instance.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataReaderExtensions.ReadVector2s(Syroot.BinaryData.BinaryDataReader,System.Int32)">
<summary>
Reads <see cref="T:Syroot.Maths.Vector2"/> instances from the current stream and returns them.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataReader"/>.</param>
<param name="count">The number of instances to read.</param>
<returns>The <see cref="T:Syroot.Maths.Vector2"/> instances.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataReaderExtensions.ReadVector2Bool(Syroot.BinaryData.BinaryDataReader,Syroot.BinaryData.BinaryBooleanFormat)">
<summary>
Reads a <see cref="T:Syroot.Maths.Vector2Bool"/> instance from the current stream and returns it.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataReader"/>.</param>
<param name="format">The <see cref="T:Syroot.BinaryData.BinaryBooleanFormat"/> in which values are stored.</param>
<returns>The <see cref="T:Syroot.Maths.Vector2Bool"/> instance.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataReaderExtensions.ReadVector2Bools(Syroot.BinaryData.BinaryDataReader,System.Int32,Syroot.BinaryData.BinaryBooleanFormat)">
<summary>
Reads <see cref="T:Syroot.Maths.Vector2Bool"/> instances from the current stream and returns them.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataReader"/>.</param>
<param name="count">The number of instances to read.</param>
<param name="format">The <see cref="T:Syroot.BinaryData.BinaryBooleanFormat"/> in which values are stored.</param>
<returns>The <see cref="T:Syroot.Maths.Vector2Bool"/> instances.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataReaderExtensions.ReadVector2F(Syroot.BinaryData.BinaryDataReader)">
<summary>
Reads a <see cref="T:Syroot.Maths.Vector2F"/> instance from the current stream and returns it.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataReader"/>.</param>
<returns>The <see cref="T:Syroot.Maths.Vector2F"/> instance.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataReaderExtensions.ReadVector2Fs(Syroot.BinaryData.BinaryDataReader,System.Int32)">
<summary>
Reads <see cref="T:Syroot.Maths.Vector2F"/> instances from the current stream and returns them.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataReader"/>.</param>
<param name="count">The number of instances to read.</param>
<returns>The <see cref="T:Syroot.Maths.Vector2F"/> instances.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataReaderExtensions.ReadVector2U(Syroot.BinaryData.BinaryDataReader)">
<summary>
Reads a <see cref="T:Syroot.Maths.Vector2U"/> instance from the current stream and returns it.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataReader"/>.</param>
<returns>The <see cref="T:Syroot.Maths.Vector2U"/> instance.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataReaderExtensions.ReadVector2Us(Syroot.BinaryData.BinaryDataReader,System.Int32)">
<summary>
Reads <see cref="T:Syroot.Maths.Vector2U"/> instances from the current stream and returns them.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataReader"/>.</param>
<param name="count">The number of instances to read.</param>
<returns>The <see cref="T:Syroot.Maths.Vector2U"/> instances.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataReaderExtensions.ReadVector3(Syroot.BinaryData.BinaryDataReader)">
<summary>
Reads a <see cref="T:Syroot.Maths.Vector3"/> instance from the current stream and returns it.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataReader"/>.</param>
<returns>The <see cref="T:Syroot.Maths.Vector3"/> instance.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataReaderExtensions.ReadVector3s(Syroot.BinaryData.BinaryDataReader,System.Int32)">
<summary>
Reads <see cref="T:Syroot.Maths.Vector3"/> instances from the current stream and returns them.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataReader"/>.</param>
<param name="count">The number of instances to read.</param>
<returns>The <see cref="T:Syroot.Maths.Vector3"/> instances.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataReaderExtensions.ReadVector3Bool(Syroot.BinaryData.BinaryDataReader,Syroot.BinaryData.BinaryBooleanFormat)">
<summary>
Reads a <see cref="T:Syroot.Maths.Vector3Bool"/> instance from the current stream and returns it.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataReader"/>.</param>
<param name="format">The <see cref="T:Syroot.BinaryData.BinaryBooleanFormat"/> in which values are stored.</param>
<returns>The <see cref="T:Syroot.Maths.Vector3Bool"/> instance.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataReaderExtensions.ReadVector3Bools(Syroot.BinaryData.BinaryDataReader,System.Int32,Syroot.BinaryData.BinaryBooleanFormat)">
<summary>
Reads <see cref="T:Syroot.Maths.Vector3Bool"/> instances from the current stream and returns them.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataReader"/>.</param>
<param name="count">The number of instances to read.</param>
<param name="format">The <see cref="T:Syroot.BinaryData.BinaryBooleanFormat"/> in which values are stored.</param>
<returns>The <see cref="T:Syroot.Maths.Vector3Bool"/> instances.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataReaderExtensions.ReadVector3F(Syroot.BinaryData.BinaryDataReader)">
<summary>
Reads a <see cref="T:Syroot.Maths.Vector3F"/> instance from the current stream and returns it.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataReader"/>.</param>
<returns>The <see cref="T:Syroot.Maths.Vector3F"/> instance.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataReaderExtensions.ReadVector3Fs(Syroot.BinaryData.BinaryDataReader,System.Int32)">
<summary>
Reads <see cref="T:Syroot.Maths.Vector3F"/> instances from the current stream and returns them.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataReader"/>.</param>
<param name="count">The number of instances to read.</param>
<returns>The <see cref="T:Syroot.Maths.Vector3F"/> instances.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataReaderExtensions.ReadVector3U(Syroot.BinaryData.BinaryDataReader)">
<summary>
Reads a <see cref="T:Syroot.Maths.Vector3U"/> instance from the current stream and returns it.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataReader"/>.</param>
<returns>The <see cref="T:Syroot.Maths.Vector3U"/> instance.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataReaderExtensions.ReadVector3Us(Syroot.BinaryData.BinaryDataReader,System.Int32)">
<summary>
Reads <see cref="T:Syroot.Maths.Vector3U"/> instances from the current stream and returns them.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataReader"/>.</param>
<param name="count">The number of instances to read.</param>
<returns>The <see cref="T:Syroot.Maths.Vector3U"/> instances.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataReaderExtensions.ReadVector4(Syroot.BinaryData.BinaryDataReader)">
<summary>
Reads a <see cref="T:Syroot.Maths.Vector4"/> instance from the current stream and returns it.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataReader"/>.</param>
<returns>The <see cref="T:Syroot.Maths.Vector4"/> instance.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataReaderExtensions.ReadVector4s(Syroot.BinaryData.BinaryDataReader,System.Int32)">
<summary>
Reads <see cref="T:Syroot.Maths.Vector4"/> instances from the current stream and returns them.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataReader"/>.</param>
<param name="count">The number of instances to read.</param>
<returns>The <see cref="T:Syroot.Maths.Vector4"/> instances.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataReaderExtensions.ReadVector4Bool(Syroot.BinaryData.BinaryDataReader,Syroot.BinaryData.BinaryBooleanFormat)">
<summary>
Reads a <see cref="T:Syroot.Maths.Vector4Bool"/> instance from the current stream and returns it.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataReader"/>.</param>
<param name="format">The <see cref="T:Syroot.BinaryData.BinaryBooleanFormat"/> in which values are stored.</param>
<returns>The <see cref="T:Syroot.Maths.Vector4Bool"/> instance.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataReaderExtensions.ReadVector4Bools(Syroot.BinaryData.BinaryDataReader,System.Int32,Syroot.BinaryData.BinaryBooleanFormat)">
<summary>
Reads <see cref="T:Syroot.Maths.Vector4Bool"/> instances from the current stream and returns them.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataReader"/>.</param>
<param name="count">The number of instances to read.</param>
<param name="format">The <see cref="T:Syroot.BinaryData.BinaryBooleanFormat"/> in which values are stored.</param>
<returns>The <see cref="T:Syroot.Maths.Vector4Bool"/> instances.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataReaderExtensions.ReadVector4F(Syroot.BinaryData.BinaryDataReader)">
<summary>
Reads a <see cref="T:Syroot.Maths.Vector4F"/> instance from the current stream and returns it.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataReader"/>.</param>
<returns>The <see cref="T:Syroot.Maths.Vector4F"/> instance.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataReaderExtensions.ReadVector4Fs(Syroot.BinaryData.BinaryDataReader,System.Int32)">
<summary>
Reads <see cref="T:Syroot.Maths.Vector4F"/> instances from the current stream and returns them.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataReader"/>.</param>
<param name="count">The number of instances to read.</param>
<returns>The <see cref="T:Syroot.Maths.Vector4F"/> instances.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataReaderExtensions.ReadVector4U(Syroot.BinaryData.BinaryDataReader)">
<summary>
Reads a <see cref="T:Syroot.Maths.Vector4U"/> instance from the current stream and returns it.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataReader"/>.</param>
<returns>The <see cref="T:Syroot.Maths.Vector4U"/> instance.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataReaderExtensions.ReadVector4Us(Syroot.BinaryData.BinaryDataReader,System.Int32)">
<summary>
Reads <see cref="T:Syroot.Maths.Vector4U"/> instances from the current stream and returns them.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataReader"/>.</param>
<param name="count">The number of instances to read.</param>
<returns>The <see cref="T:Syroot.Maths.Vector4U"/> instances.</returns>
</member>
<member name="T:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataWriterExtensions">
<summary>
Represents extension methods for the <see cref="T:Syroot.BinaryData.BinaryDataWriter"/> class.
</summary>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataWriterExtensions.Write(Syroot.BinaryData.BinaryDataWriter,Syroot.NintenTools.NSW.Bntx.Decimal10x5)">
<summary>
Writes a <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/> instance into the current stream.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataWriter"/>.</param>
<param name="value">The <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/> instance.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataWriterExtensions.Write(Syroot.BinaryData.BinaryDataWriter,System.Collections.Generic.IEnumerable{Syroot.NintenTools.NSW.Bntx.Decimal10x5})">
<summary>
Writes <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/> instances into the current stream.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataWriter"/>.</param>
<param name="values">The <see cref="T:Syroot.NintenTools.NSW.Bntx.Decimal10x5"/> instances.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataWriterExtensions.Write(Syroot.BinaryData.BinaryDataWriter,Syroot.NintenTools.NSW.Bntx.Half)">
<summary>
Writes a <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/> instance into the current stream.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataWriter"/>.</param>
<param name="value">The <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/> instance.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataWriterExtensions.Write(Syroot.BinaryData.BinaryDataWriter,System.Collections.Generic.IEnumerable{Syroot.NintenTools.NSW.Bntx.Half})">
<summary>
Writes <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/> instances into the current stream.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataWriter"/>.</param>
<param name="values">The <see cref="T:Syroot.NintenTools.NSW.Bntx.Half"/> instances.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataWriterExtensions.Write(Syroot.BinaryData.BinaryDataWriter,Syroot.Maths.Matrix3x4)">
<summary>
Writes a <see cref="T:Syroot.Maths.Matrix3x4"/> instance into the current stream.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataWriter"/>.</param>
<param name="value">The <see cref="T:Syroot.Maths.Matrix3x4"/> instance.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataWriterExtensions.Write(Syroot.BinaryData.BinaryDataWriter,System.Collections.Generic.IEnumerable{Syroot.Maths.Matrix3x4})">
<summary>
Writes <see cref="T:Syroot.Maths.Matrix3x4"/> instances into the current stream.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataWriter"/>.</param>
<param name="values">The <see cref="T:Syroot.Maths.Matrix3x4"/> instances.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataWriterExtensions.Write(Syroot.BinaryData.BinaryDataWriter,Syroot.Maths.Vector2Bool,Syroot.BinaryData.BinaryBooleanFormat)">
<summary>
Writes a <see cref="T:Syroot.Maths.Vector2Bool"/> instance into the current stream.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataWriter"/>.</param>
<param name="value">The <see cref="T:Syroot.Maths.Vector2Bool"/> instance.</param>
<param name="format">The <see cref="T:Syroot.BinaryData.BinaryBooleanFormat"/> in which values are stored.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataWriterExtensions.Write(Syroot.BinaryData.BinaryDataWriter,System.Collections.Generic.IEnumerable{Syroot.Maths.Vector2Bool},Syroot.BinaryData.BinaryBooleanFormat)">
<summary>
Writes <see cref="T:Syroot.Maths.Vector2Bool"/> instances into the current stream.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataWriter"/>.</param>
<param name="values">The <see cref="T:Syroot.Maths.Vector2Bool"/> instances.</param>
<param name="format">The <see cref="T:Syroot.BinaryData.BinaryBooleanFormat"/> in which values are stored.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataWriterExtensions.Write(Syroot.BinaryData.BinaryDataWriter,Syroot.Maths.Vector2F)">
<summary>
Writes a <see cref="T:Syroot.Maths.Vector2F"/> instance into the current stream.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataWriter"/>.</param>
<param name="value">The <see cref="T:Syroot.Maths.Vector2F"/> instance.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataWriterExtensions.Write(Syroot.BinaryData.BinaryDataWriter,System.Collections.Generic.IEnumerable{Syroot.Maths.Vector2F})">
<summary>
Writes <see cref="T:Syroot.Maths.Vector2F"/> instances into the current stream.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataWriter"/>.</param>
<param name="values">The <see cref="T:Syroot.Maths.Vector2F"/> instances.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataWriterExtensions.Write(Syroot.BinaryData.BinaryDataWriter,Syroot.Maths.Vector2U)">
<summary>
Writes a <see cref="T:Syroot.Maths.Vector2U"/> instance into the current stream.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataWriter"/>.</param>
<param name="value">The <see cref="T:Syroot.Maths.Vector2U"/> instance.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataWriterExtensions.Write(Syroot.BinaryData.BinaryDataWriter,System.Collections.Generic.IEnumerable{Syroot.Maths.Vector2U})">
<summary>
Writes <see cref="T:Syroot.Maths.Vector2U"/> instances into the current stream.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataWriter"/>.</param>
<param name="values">The <see cref="T:Syroot.Maths.Vector2U"/> instances.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataWriterExtensions.Write(Syroot.BinaryData.BinaryDataWriter,Syroot.Maths.Vector3)">
<summary>
Writes a <see cref="T:Syroot.Maths.Vector3"/> instance into the current stream.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataWriter"/>.</param>
<param name="value">The <see cref="T:Syroot.Maths.Vector3"/> instance.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataWriterExtensions.Write(Syroot.BinaryData.BinaryDataWriter,System.Collections.Generic.IEnumerable{Syroot.Maths.Vector3})">
<summary>
Writes <see cref="T:Syroot.Maths.Vector3"/> instances into the current stream.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataWriter"/>.</param>
<param name="values">The <see cref="T:Syroot.Maths.Vector3"/> instances.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataWriterExtensions.Write(Syroot.BinaryData.BinaryDataWriter,Syroot.Maths.Vector3Bool,Syroot.BinaryData.BinaryBooleanFormat)">
<summary>
Writes a <see cref="T:Syroot.Maths.Vector3Bool"/> instance into the current stream.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataWriter"/>.</param>
<param name="value">The <see cref="T:Syroot.Maths.Vector3Bool"/> instance.</param>
<param name="format">The <see cref="T:Syroot.BinaryData.BinaryBooleanFormat"/> in which values are stored.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataWriterExtensions.Write(Syroot.BinaryData.BinaryDataWriter,System.Collections.Generic.IEnumerable{Syroot.Maths.Vector3Bool},Syroot.BinaryData.BinaryBooleanFormat)">
<summary>
Writes <see cref="T:Syroot.Maths.Vector3Bool"/> instances into the current stream.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataWriter"/>.</param>
<param name="values">The <see cref="T:Syroot.Maths.Vector3Bool"/> instances.</param>
<param name="format">The <see cref="T:Syroot.BinaryData.BinaryBooleanFormat"/> in which values are stored.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataWriterExtensions.Write(Syroot.BinaryData.BinaryDataWriter,Syroot.Maths.Vector3F)">
<summary>
Writes a <see cref="T:Syroot.Maths.Vector3F"/> instance into the current stream.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataWriter"/>.</param>
<param name="value">The <see cref="T:Syroot.Maths.Vector3F"/> instance.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataWriterExtensions.Write(Syroot.BinaryData.BinaryDataWriter,System.Collections.Generic.IEnumerable{Syroot.Maths.Vector3F})">
<summary>
Writes <see cref="T:Syroot.Maths.Vector3F"/> instances into the current stream.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataWriter"/>.</param>
<param name="values">The <see cref="T:Syroot.Maths.Vector3F"/> instances.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataWriterExtensions.Write(Syroot.BinaryData.BinaryDataWriter,Syroot.Maths.Vector3U)">
<summary>
Writes a <see cref="T:Syroot.Maths.Vector3U"/> instance into the current stream.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataWriter"/>.</param>
<param name="value">The <see cref="T:Syroot.Maths.Vector3U"/> instance.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataWriterExtensions.Write(Syroot.BinaryData.BinaryDataWriter,System.Collections.Generic.IEnumerable{Syroot.Maths.Vector3U})">
<summary>
Writes <see cref="T:Syroot.Maths.Vector3U"/> instances into the current stream.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataWriter"/>.</param>
<param name="values">The <see cref="T:Syroot.Maths.Vector3U"/> instances.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataWriterExtensions.Write(Syroot.BinaryData.BinaryDataWriter,Syroot.Maths.Vector4)">
<summary>
Writes a <see cref="T:Syroot.Maths.Vector4"/> instance into the current stream.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataWriter"/>.</param>
<param name="value">The <see cref="T:Syroot.Maths.Vector4"/> instance.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataWriterExtensions.Write(Syroot.BinaryData.BinaryDataWriter,System.Collections.Generic.IEnumerable{Syroot.Maths.Vector4})">
<summary>
Writes <see cref="T:Syroot.Maths.Vector4"/> instances into the current stream.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataWriter"/>.</param>
<param name="values">The <see cref="T:Syroot.Maths.Vector4"/> instances.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataWriterExtensions.Write(Syroot.BinaryData.BinaryDataWriter,Syroot.Maths.Vector4Bool,Syroot.BinaryData.BinaryBooleanFormat)">
<summary>
Writes a <see cref="T:Syroot.Maths.Vector4Bool"/> instance into the current stream.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataWriter"/>.</param>
<param name="value">The <see cref="T:Syroot.Maths.Vector4Bool"/> instance.</param>
<param name="format">The <see cref="T:Syroot.BinaryData.BinaryBooleanFormat"/> in which values are stored.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataWriterExtensions.Write(Syroot.BinaryData.BinaryDataWriter,System.Collections.Generic.IEnumerable{Syroot.Maths.Vector4Bool},Syroot.BinaryData.BinaryBooleanFormat)">
<summary>
Writes <see cref="T:Syroot.Maths.Vector4Bool"/> instances into the current stream.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataWriter"/>.</param>
<param name="values">The <see cref="T:Syroot.Maths.Vector4Bool"/> instances.</param>
<param name="format">The <see cref="T:Syroot.BinaryData.BinaryBooleanFormat"/> in which values are stored.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataWriterExtensions.Write(Syroot.BinaryData.BinaryDataWriter,Syroot.Maths.Vector4F)">
<summary>
Writes a <see cref="T:Syroot.Maths.Vector4F"/> instance into the current stream.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataWriter"/>.</param>
<param name="value">The <see cref="T:Syroot.Maths.Vector4F"/> instance.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataWriterExtensions.Write(Syroot.BinaryData.BinaryDataWriter,System.Collections.Generic.IEnumerable{Syroot.Maths.Vector4F})">
<summary>
Writes <see cref="T:Syroot.Maths.Vector4F"/> instances into the current stream.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataWriter"/>.</param>
<param name="values">The <see cref="T:Syroot.Maths.Vector4F"/> instances.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataWriterExtensions.Write(Syroot.BinaryData.BinaryDataWriter,Syroot.Maths.Vector4U)">
<summary>
Writes a <see cref="T:Syroot.Maths.Vector4U"/> instance into the current stream.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataWriter"/>.</param>
<param name="value">The <see cref="T:Syroot.Maths.Vector4U"/> instance.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BinaryDataWriterExtensions.Write(Syroot.BinaryData.BinaryDataWriter,System.Collections.Generic.IEnumerable{Syroot.Maths.Vector4U})">
<summary>
Writes <see cref="T:Syroot.Maths.Vector4U"/> instances into the current stream.
</summary>
<param name="self">The extended <see cref="T:Syroot.BinaryData.BinaryDataWriter"/>.</param>
<param name="values">The <see cref="T:Syroot.Maths.Vector4U"/> instances.</param>
</member>
<member name="T:Syroot.NintenTools.NSW.Bntx.Core.ByteExtensions">
<summary>
Represents extension methods for <see cref="T:System.Byte"/> instances.
</summary>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.ByteExtensions.Decode(System.Byte,System.Int32,System.Int32)">
<summary>
Returns an <see cref="T:System.Byte"/> instance represented by the given number of <paramref name="bits"/>, starting
at the <paramref name="firstBit"/>.
</summary>
<param name="self">The extended <see cref="T:System.Byte"/> instance.</param>
<param name="firstBit">The first bit of the encoded value.</param>
<param name="bits">The number of least significant bits which are used to store the <see cref="T:System.Byte"/>
value.</param>
<returns>The decoded <see cref="T:System.Byte"/>.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.ByteExtensions.EnableBit(System.Byte,System.Int32)">
<summary>
Returns the current <see cref="T:System.Byte"/> with the bit at the <paramref name="index"/> set (being 1).
</summary>
<param name="self">The extended <see cref="T:System.Byte"/> instance.</param>
<param name="index">The 0-based index of the bit to enable.</param>
<returns>The current <see cref="T:System.Byte"/> with the bit enabled.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.ByteExtensions.Encode(System.Byte,System.Byte,System.Int32,System.Int32)">
<summary>
Returns the current <see cref="T:System.Byte"/> with the given <paramref name="value"/> set into the given number
of <paramref name="bits"/> starting at <paramref name="firstBit"/>.
</summary>
<param name="self">The extended <see cref="T:System.Byte"/> instance.</param>
<param name="value">The value to encode.</param>
<param name="firstBit">The first bit used for the encoded value.</param>
<param name="bits">The number of bits which are used to store the <see cref="T:System.Byte"/> value.</param>
<returns>The current <see cref="T:System.Byte"/> with the value encoded into it.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.ByteExtensions.DisableBit(System.Byte,System.Int32)">
<summary>
Returns the current <see cref="T:System.Byte"/> with the bit at the <paramref name="index"/> cleared (being 0).
</summary>
<param name="self">The extended <see cref="T:System.Byte"/> instance.</param>
<param name="index">The 0-based index of the bit to disable.</param>
<returns>The current <see cref="T:System.Byte"/> with the bit disabled.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.ByteExtensions.GetBit(System.Byte,System.Int32)">
<summary>
Returns a value indicating whether the bit at the <paramref name="index"/> in the current
<see cref="T:System.Byte"/> is enabled or disabled.
</summary>
<param name="self">The extended <see cref="T:System.Byte"/> instance.</param>
<param name="index">The 0-based index of the bit to check.</param>
<returns><c>true</c> when the bit is set; otherwise <c>false</c>.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.ByteExtensions.RotateBits(System.Byte,System.Int32)">
<summary>
Returns the current <see cref="T:System.Byte"/> with all bits rotated in the given <paramref name="direction"/>,
where positive directions rotate left and negative directions rotate right.
</summary>
<param name="self">The extended <see cref="T:System.Byte"/> instance.</param>
<param name="direction">The direction in which to rotate, where positive directions rotate left.</param>
<returns>The current <see cref="T:System.Byte"/> with the bits rotated.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.ByteExtensions.SetBit(System.Byte,System.Int32,System.Boolean)">
<summary>
Returns the current <see cref="T:System.Byte"/> with the bit at the <paramref name="index"/> enabled or disabled,
according to <paramref name="enable"/>.
</summary>
<param name="self">The extended <see cref="T:System.Byte"/> instance.</param>
<param name="index">The 0-based index of the bit to enable or disable.</param>
<param name="enable"><c>true</c> to enable the bit; otherwise <c>false</c>.</param>
<returns>The current <see cref="T:System.Byte"/> with the bit enabled or disabled.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.ByteExtensions.ToggleBit(System.Byte,System.Int32)">
<summary>
Returns the current <see cref="T:System.Byte"/> with the bit at the <paramref name="index"/> enabled when it is
disabled or disabled when it is enabled.
</summary>
<param name="self">The extended <see cref="T:System.Byte"/> instance.</param>
<param name="index">The 0-based index of the bit to toggle.</param>
<returns>The current <see cref="T:System.Byte"/> with the bit toggled.</returns>
</member>
<member name="T:Syroot.NintenTools.NSW.Bntx.Core.UInt32Extensions">
<summary>
Represents extension methods for <see cref="T:System.UInt32"/> instances.
</summary>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.UInt32Extensions.Decode(System.UInt32,System.Int32,System.Int32)">
<summary>
Returns an <see cref="T:System.UInt32"/> instance represented by the given number of <paramref name="bits"/>, starting
at the <paramref name="firstBit"/>.
</summary>
<param name="self">The extended <see cref="T:System.UInt32"/> instance.</param>
<param name="firstBit">The first bit of the encoded value.</param>
<param name="bits">The number of least significant bits which are used to store the <see cref="T:System.UInt32"/>
value.</param>
<returns>The decoded <see cref="T:System.UInt32"/>.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.UInt32Extensions.EnableBit(System.UInt32,System.Int32)">
<summary>
Returns the current <see cref="T:System.UInt32"/> with the bit at the <paramref name="index"/> set (being 1).
</summary>
<param name="self">The extended <see cref="T:System.UInt32"/> instance.</param>
<param name="index">The 0-based index of the bit to enable.</param>
<returns>The current <see cref="T:System.UInt32"/> with the bit enabled.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.UInt32Extensions.Encode(System.UInt32,System.UInt32,System.Int32,System.Int32)">
<summary>
Returns the current <see cref="T:System.UInt32"/> with the given <paramref name="value"/> set into the given number
of <paramref name="bits"/> starting at <paramref name="firstBit"/>.
</summary>
<param name="self">The extended <see cref="T:System.UInt32"/> instance.</param>
<param name="value">The value to encode.</param>
<param name="firstBit">The first bit used for the encoded value.</param>
<param name="bits">The number of bits which are used to store the <see cref="T:System.UInt32"/> value.</param>
<returns>The current <see cref="T:System.UInt32"/> with the value encoded into it.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.UInt32Extensions.DisableBit(System.UInt32,System.Int32)">
<summary>
Returns the current <see cref="T:System.UInt32"/> with the bit at the <paramref name="index"/> cleared (being 0).
</summary>
<param name="self">The extended <see cref="T:System.UInt32"/> instance.</param>
<param name="index">The 0-based index of the bit to disable.</param>
<returns>The current <see cref="T:System.UInt32"/> with the bit disabled.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.UInt32Extensions.GetBit(System.UInt32,System.Int32)">
<summary>
Returns a value indicating whether the bit at the <paramref name="index"/> in the current
<see cref="T:System.UInt32"/> is enabled or disabled.
</summary>
<param name="self">The extended <see cref="T:System.UInt32"/> instance.</param>
<param name="index">The 0-based index of the bit to check.</param>
<returns><c>true</c> when the bit is set; otherwise <c>false</c>.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.UInt32Extensions.RotateBits(System.UInt32,System.Int32)">
<summary>
Returns the current <see cref="T:System.UInt32"/> with all bits rotated in the given <paramref name="direction"/>,
where positive directions rotate left and negative directions rotate right.
</summary>
<param name="self">The extended <see cref="T:System.UInt32"/> instance.</param>
<param name="direction">The direction in which to rotate, where positive directions rotate left.</param>
<returns>The current <see cref="T:System.UInt32"/> with the bits rotated.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.UInt32Extensions.SetBit(System.UInt32,System.Int32,System.Boolean)">
<summary>
Returns the current <see cref="T:System.UInt32"/> with the bit at the <paramref name="index"/> enabled or disabled,
according to <paramref name="enable"/>.
</summary>
<param name="self">The extended <see cref="T:System.UInt32"/> instance.</param>
<param name="index">The 0-based index of the bit to enable or disable.</param>
<param name="enable"><c>true</c> to enable the bit; otherwise <c>false</c>.</param>
<returns>The current <see cref="T:System.UInt32"/> with the bit enabled or disabled.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.UInt32Extensions.ToggleBit(System.UInt32,System.Int32)">
<summary>
Returns the current <see cref="T:System.UInt32"/> with the bit at the <paramref name="index"/> enabled when it is
disabled or disabled when it is enabled.
</summary>
<param name="self">The extended <see cref="T:System.UInt32"/> instance.</param>
<param name="index">The 0-based index of the bit to toggle.</param>
<returns>The current <see cref="T:System.UInt32"/> with the bit toggled.</returns>
</member>
<member name="T:Syroot.NintenTools.NSW.Bntx.Core.IResData">
<summary>
Represents the common interface for <see cref="T:Syroot.NintenTools.NSW.Bntx.BntxFile"/> data instances.
</summary>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.IResData.Load(Syroot.NintenTools.NSW.Bntx.Core.BntxFileLoader)">
<summary>
Loads raw data from the <paramref name="loader"/> data stream into instances.
</summary>
<param name="loader">The <see cref="T:Syroot.NintenTools.NSW.Bntx.Core.BntxFileLoader"/> to load data with.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.IResData.Save(Syroot.NintenTools.NSW.Bntx.Core.BntxFileSaver)">
<summary>
Saves header data of the instance and queues referenced data in the given <paramref name="saver"/>.
</summary>
<param name="saver">The <see cref="T:Syroot.NintenTools.NSW.Bntx.Core.BntxFileSaver"/> to save headers and queue data with.</param>
</member>
<member name="T:Syroot.NintenTools.NSW.Bntx.Core.BntxFileLoader">
<summary>
Loads the hierachy and data of a <see cref="T:Syroot.NintenTools.NSW.Bntx.BntxFile"/>.
</summary>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BntxFileLoader.#ctor(Syroot.NintenTools.NSW.Bntx.BntxFile,System.IO.Stream,System.Boolean)">
<summary>
Initializes a new instance of the <see cref="T:Syroot.NintenTools.NSW.Bntx.Core.BntxFileLoader"/> class loading data into the given
<paramref name="bntxFile"/> from the specified <paramref name="stream"/> which is optionally left open.
</summary>
<param name="bntxFile">The <see cref="!:Bntx.bntxFile"/> instance to load data into.</param>
<param name="stream">The <see cref="T:System.IO.Stream"/> to read data from.</param>
<param name="leaveOpen"><c>true</c> to leave the stream open after reading, otherwise <c>false</c>.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BntxFileLoader.#ctor(Syroot.NintenTools.NSW.Bntx.BntxFile,System.String)">
<summary>
Initializes a new instance of the <see cref="T:Syroot.NintenTools.NSW.Bntx.Core.BntxFileLoader"/> class from the file with the given
<paramref name="fileName"/>.
</summary>
<param name="BntxFile">The <see cref="T:Syroot.NintenTools.NSW.Bntx.BntxFile"/> instance to load data into.</param>
<param name="fileName">The name of the file to load the data from.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BntxFileLoader.#ctor(Syroot.NintenTools.NSW.Bntx.Texture,System.String)">
<summary>
Initializes a new instance of the <see cref="T:Syroot.NintenTools.NSW.Bntx.Core.BntxFileLoader"/> class from the file with the given
<paramref name="fileName"/>.
</summary>
<param name="texture">The <see cref="T:Syroot.NintenTools.NSW.Bntx.Texture"/> instance to load data into.</param>
<param name="fileName">The name of the file to load the data from.</param>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.Core.BntxFileLoader.BntxFile">
<summary>
Gets the loaded <see cref="T:Syroot.NintenTools.NSW.Bntx.BntxFile"/> instance.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.Core.BntxFileLoader.Texture">
<summary>
Gets the loaded <see cref="T:Syroot.NintenTools.NSW.Bntx.BntxFile"/> instance.
</summary>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BntxFileLoader.Execute">
<summary>
Starts deserializing the data from the <see cref="P:Syroot.NintenTools.NSW.Bntx.Core.BntxFileLoader.BntxFile"/> root.
</summary>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BntxFileLoader.Load``1(System.Boolean)">
<summary>
Reads and returns an <see cref="T:Syroot.NintenTools.NSW.Bntx.Core.IResData"/> instance of type <typeparamref name="T"/> from the following
offset or returns <c>null</c> if the read offset is 0.
</summary>
<typeparam name="T">The type of the <see cref="T:Syroot.NintenTools.NSW.Bntx.Core.IResData"/> to read.</typeparam>
<returns>The <see cref="T:Syroot.NintenTools.NSW.Bntx.Core.IResData"/> instance or <c>null</c>.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BntxFileLoader.LoadCustom``1(System.Func{``0},System.Nullable{System.Int64})">
<summary>
Reads and returns an instance of arbitrary type <typeparamref name="T"/> from the following offset with the
given <paramref name="callback"/> or returns <c>null</c> if the read offset is 0.
</summary>
<typeparam name="T">The type of the data to read.</typeparam>
<param name="callback">The callback to read the instance data with.</param>
<param name="offset">The optional offset to use instead of reading a following one.</param>
<returns>The data instance or <c>null</c>.</returns>
<remarks>Offset required for ExtFile header (offset specified before size).</remarks>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BntxFileLoader.LoadDict">
<summary>
Reads and returns an <see cref="T:Syroot.NintenTools.NSW.Bntx.ResDict"/> instance
the following offset or returns an empty instance if the read offset is 0.
</summary>
<returns>The <see cref="T:Syroot.NintenTools.NSW.Bntx.ResDict"/> instance.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BntxFileLoader.LoadList``1(System.Int32,System.Nullable{System.Int64})">
<summary>
Reads and returns an <see cref="T:System.Collections.Generic.IList`1"/> instance with <paramref name="count"/> elements of type
<typeparamref name="T"/> from the following offset or returns <c>null</c> if the read offset is 0.
</summary>
<typeparam name="T">The type of the <see cref="T:Syroot.NintenTools.NSW.Bntx.Core.IResData"/> elements.</typeparam>
<param name="count">The number of elements to expect for the list.</param>
<param name="offset">The optional offset to use instead of reading a following one.</param>
<returns>The <see cref="T:System.Collections.Generic.IList`1"/> instance or <c>null</c>.</returns>
<remarks>Offset required for FMDL FVTX lists (offset specified before count).</remarks>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BntxFileLoader.LoadString(System.Text.Encoding,System.Int64)">
<summary>
Reads and returns a <see cref="T:System.String"/> instance from the following offset or <c>null</c> if the read
offset is 0.
</summary>
<param name="encoding">The optional encoding of the text.</param>
<returns>The read text.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BntxFileLoader.LoadStrings(System.Int32,System.Text.Encoding)">
<summary>
Reads and returns <paramref name="count"/> <see cref="T:System.String"/> instances from the following offsets.
</summary>
<param name="count">The number of instances to read.</param>
<param name="encoding">The optional encoding of the texts.</param>
<returns>The read texts.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BntxFileLoader.CheckSignature(System.String)">
<summary>
Reads a Bntx signature consisting of 4 ASCII characters encoded as an <see cref="T:System.UInt32"/> and checks for
validity.
</summary>
<param name="validSignature">A valid signature.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BntxFileLoader.ReadOffset(System.Boolean)">
<summary>
Reads a Bntx offset which is the absolute address.
</summary>
<returns>The absolute address of the offset.</returns>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BntxFileLoader.ReadOffsets(System.Int32)">
<summary>
Reads Bntx offsets which is the absolute addresses.
</summary>
<param name="count">The number of offsets to read.</param>
<returns>The absolute addresses of the offsets.</returns>
</member>
<member name="T:Syroot.NintenTools.NSW.Bntx.Core.BntxFileSaver">
<summary>
Saves the hierachy and data of a <see cref="T:Syroot.NintenTools.NSW.Bntx.BntxFile"/>.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bntx.Core.BntxFileSaver.AlignmentSmall">
<summary>
Gets or sets a data block alignment typically seen with <see cref="P:Syroot.NintenTools.NSW.Bntx.Buffer.Data"/>.
</summary>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BntxFileSaver.#ctor(Syroot.NintenTools.NSW.Bntx.BntxFile,System.IO.Stream,System.Boolean)">
<summary>
Initializes a new instance of the <see cref="T:Syroot.NintenTools.NSW.Bntx.Core.BntxFileSaver"/> class saving data from the given
<paramref name="bntxFile"/> into the specified <paramref name="stream"/> which is optionally left open.
</summary>
<param name="bntxFile">The <see cref="!:Bntx.bntxFile"/> instance to save data from.</param>
<param name="stream">The <see cref="T:System.IO.Stream"/> to save data into.</param>
<param name="leaveOpen"><c>true</c> to leave the stream open after writing, otherwise <c>false</c>.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BntxFileSaver.#ctor(Syroot.NintenTools.NSW.Bntx.BntxFile,System.String)">
<summary>
Initializes a new instance of the <see cref="T:Syroot.NintenTools.NSW.Bntx.Core.BntxFileSaver"/> class for the file with the given
<paramref name="fileName"/>.
</summary>
<param name="BntxFile">The <see cref="T:Syroot.NintenTools.NSW.Bntx.BntxFile"/> instance to save.</param>
<param name="fileName">The name of the file to save the data into.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BntxFileSaver.#ctor(Syroot.NintenTools.NSW.Bntx.Texture,Syroot.NintenTools.NSW.Bntx.BntxFile,System.String)">
<summary>
Initializes a new instance of the <see cref="T:Syroot.NintenTools.NSW.Bntx.Core.BntxFileSaver"/> class for the file with the given
<paramref name="fileName"/>.
</summary>
<param name="BntxFile">The <see cref="T:Syroot.NintenTools.NSW.Bntx.BntxFile"/> instance to save.</param>
<param name="fileName">The name of the file to save the data into.</param>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.Core.BntxFileSaver.BntxFile">
<summary>
Gets the saved <see cref="T:Syroot.NintenTools.NSW.Bntx.BntxFile"/> instance.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.Core.BntxFileSaver.Texture">
<summary>
Gets the saved <see cref="!:Bfres.Texture"/> instance.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.Core.BntxFileSaver.CurrentIndex">
<summary>
Gets the current index when writing lists or dicts.
</summary>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BntxFileSaver.Execute">
<summary>
Starts serializing the data from the <see cref="P:Syroot.NintenTools.NSW.Bntx.Core.BntxFileSaver.BntxFile"/> root.
</summary>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BntxFileSaver.SaveRelocateEntryToSection(System.Int64,System.UInt32,System.UInt32,System.UInt32,System.UInt32,System.String)">
<summary>
Save pointer array to be relocated in section 1
</summary>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BntxFileSaver.SaveHeaderBlock(System.Boolean)">
<summary>
Reserves space for an offset and size for header block.
</summary>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BntxFileSaver.Save(Syroot.NintenTools.NSW.Bntx.Core.IResData,System.Int32)">
<summary>
Reserves space for an offset to the <paramref name="resData"/> written later.
</summary>
<param name="resData">The <see cref="T:Syroot.NintenTools.NSW.Bntx.Core.IResData"/> to save.</param>
<param name="index">The index of the element, used for instances referenced by a <see cref="T:Syroot.NintenTools.NSW.Bntx.ResDict"/>.
</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BntxFileSaver.SaveFieldFileSize">
<summary>
Reserves space for the <see cref="T:Syroot.NintenTools.NSW.Bntx.BntxFile"/> file size field which is automatically filled later.
</summary>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BntxFileSaver.SaveFieldStringPool">
<summary>
Reserves space for the <see cref="T:Syroot.NintenTools.NSW.Bntx.BntxFile"/> string pool size and offset fields which are automatically
filled later.
</summary>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BntxFileSaver.SaveList``1(System.Collections.Generic.IEnumerable{``0},System.Boolean)">
<summary>
Reserves space for an offset to the <paramref name="list"/> written later.
</summary>
<typeparam name="T">The type of the <see cref="T:Syroot.NintenTools.NSW.Bntx.Core.IResData"/> elements.</typeparam>
<param name="list">The <see cref="T:System.Collections.Generic.IList`1"/> to save.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BntxFileSaver.SaveDict(Syroot.NintenTools.NSW.Bntx.ResDict)">
<summary>
Reserves space for an offset to the <paramref name="dict"/> written later.
</summary>
<typeparam name="T">The type of the <see cref="T:Syroot.NintenTools.NSW.Bntx.Core.IResData"/> element values.</typeparam>
<param name="dict">The <see cref="T:Syroot.NintenTools.NSW.Bntx.ResDict"/> to save.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BntxFileSaver.SaveCustom(System.Object,System.Action)">
<summary>
Reserves space for an offset to the <paramref name="data"/> written later with the
<paramref name="callback"/>.
</summary>
<param name="data">The data to save.</param>
<param name="callback">The <see cref="T:System.Action"/> to invoke to write the data.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BntxFileSaver.SaveString(System.String,System.Text.Encoding)">
<summary>
Reserves space for an offset to the <paramref name="str"/> written later in the string pool with the
specified <paramref name="encoding"/>.
</summary>
<param name="str">The name to save.</param>
<param name="encoding">The <see cref="T:System.Text.Encoding"/> in which the name will be stored.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BntxFileSaver.SaveStrings(System.Collections.Generic.IEnumerable{System.String},System.Text.Encoding)">
<summary>
Reserves space for offsets to the <paramref name="strings"/> written later in the string pool with the
specified <paramref name="encoding"/>
</summary>
<param name="strings">The names to save.</param>
<param name="encoding">The <see cref="T:System.Text.Encoding"/> in which the names will be stored.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BntxFileSaver.SaveBlock(System.Object,System.UInt32,System.Action)">
<summary>
Reserves space for an offset to the <paramref name="data"/> written later in the data block pool.
</summary>
<param name="data">The data to save.</param>
<param name="alignment">The alignment to seek to before invoking the callback.</param>
<param name="callback">The <see cref="T:System.Action"/> to invoke to write the data.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Core.BntxFileSaver.WriteSignature(System.String)">
<summary>
Writes a Bntx signature consisting of 4 ASCII characters encoded as an <see cref="T:System.UInt32"/>.
</summary>
<param name="value">A valid signature.</param>
</member>
<member name="T:Syroot.NintenTools.NSW.Bntx.Core.ResStringComparer">
<summary>
Represents a <see cref="P:System.StringComparer.Ordinal"/> sorting empty strings to the end of lists.
</summary>
</member>
<member name="T:Syroot.NintenTools.NSW.Bntx.GFX.Dim">
<summary>
Represents shapes of a given surface or texture.
</summary>
</member>
<member name="T:Syroot.NintenTools.NSW.Bntx.GFX.SurfaceDim">
<summary>
Represents shapes of a given surface or texture.
</summary>
</member>
<member name="T:Syroot.NintenTools.NSW.Bntx.GFX.SurfaceFormat">
<summary>
Represents desired texture, color-buffer, depth-buffer, or scan-buffer formats.
</summary>
</member>
<member name="T:Syroot.NintenTools.NSW.Bntx.GFX.TileMode">
<summary>
Represents the desired tiling modes for a surface.
</summary>
</member>
<member name="T:Syroot.NintenTools.NSW.Bntx.ResException">
<summary>
Represents an exception raised when handling <see cref="T:Syroot.NintenTools.NSW.Bntx.BntxFile"/> data.
</summary>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.ResException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:Syroot.NintenTools.NSW.Bntx.ResException"/> class with a specified error
<paramref name="message"/>.
</summary>
<param name="message">The error message that explains the reason for the exception.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.ResException.#ctor(System.String,System.Object[])">
<summary>
Initializes a new instance of the <see cref="T:Syroot.NintenTools.NSW.Bntx.ResException"/> class with a specified error message created
from the given <paramref name="format"/> and <paramref name="args"/>.
</summary>
<param name="format">The format of the error message.</param>
<param name="args">The parameters to format the error message with.</param>
</member>
<member name="T:Syroot.NintenTools.NSW.Bntx.Texture">
<summary>
Represents an FMDL subfile in a <see cref="T:Syroot.NintenTools.NSW.Bntx.BntxFile"/>, storing multi-dimensional texture data.
</summary>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Texture.Import(System.IO.Stream,System.Boolean)">
<summary>
Initializes a new instance of the <see cref="!:Material"/> class from the given <paramref name="stream"/> which
is optionally left open.
</summary>
<param name="stream">The <see cref="T:System.IO.Stream"/> to load the data from.</param>
<param name="leaveOpen"><c>true</c> to leave the stream open after reading, otherwise <c>false</c>.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Texture.Import(System.String)">
<summary>
Initializes a new instance of the <see cref="!:ResFile"/> class from the file with the given
<paramref name="fileName"/>.
</summary>
<param name="fileName">The name of the file to load the data from.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Texture.Export(System.IO.Stream,Syroot.NintenTools.NSW.Bntx.BntxFile,System.Boolean)">
<summary>
Saves the contents in the given <paramref name="stream"/> and optionally leaves it open
</summary>
<param name="stream">The <see cref="T:System.IO.Stream"/> to save the contents into.</param>
<param name="leaveOpen"><c>true</c> to leave the stream open after writing, otherwise <c>false</c>.</param>
</member>
<member name="M:Syroot.NintenTools.NSW.Bntx.Texture.Export(System.String,Syroot.NintenTools.NSW.Bntx.BntxFile)">
<summary>
Saves the contents in the file with the given <paramref name="fileName"/>.
</summary>
<param name="fileName">The name of the file to save the contents into.</param>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.Texture.ChannelRed">
<summary>
Gets or sets the source channel to map to the R (red) channel.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.Texture.ChannelGreen">
<summary>
Gets or sets the source channel to map to the G (green) channel.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.Texture.ChannelBlue">
<summary>
Gets or sets the source channel to map to the B (blue) channel.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.Texture.ChannelAlpha">
<summary>
Gets or sets the source channel to map to the A (alpha) channel.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.Texture.Width">
<summary>
Gets or sets the width of the texture.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.Texture.Height">
<summary>
Gets or sets the height of the texture.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.Texture.MipCount">
<summary>
Gets or sets the number of mipmaps stored in the <see cref="!:MipData"/>.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.Texture.Format">
<summary>
Gets or sets the desired texture data buffer format.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.Texture.Name">
<summary>
Gets or sets the name with which the instance can be referenced uniquely in <see cref="!:ResDict&lt;Texture&gt;"/>
instances.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.Texture.Path">
<summary>
Gets or sets the path of the file which originally supplied the data of this instance.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.Texture.Depth">
<summary>
Gets or sets the depth of the texture.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.Texture.TileMode">
<summary>
Gets or sets the tiling mode.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.Texture.Swizzle">
<summary>
Gets or sets the swizzling value.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.Texture.Alignment">
<summary>
Gets or sets the swizzling alignment.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.Texture.Pitch">
<summary>
Gets or sets the pixel swizzling stride.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.Texture.Dim">
<summary>
Gets or sets the dims of the texture.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.Texture.SurfaceDim">
<summary>
Gets or sets the shape of the texture.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.Texture.MipOffsets">
<summary>
Gets or sets the offsets in the <see cref="!:MipData"/> array to the data of the mipmap level corresponding
to the array index.
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.Texture.TextureData">
<summary>
The raw bytes of texture data stored for each mip map
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.Texture.Flags">
<summary>
Gets or sets info flags
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.Texture.ImageSize">
<summary>
Gets or sets the image size
</summary>
</member>
<member name="P:Syroot.NintenTools.NSW.Bntx.Texture.SampleCount">
<summary>
Gets or sets sample amount
</summary>
</member>
<member name="T:Syroot.NintenTools.NSW.Bfres.GX2.GX2AAMode">
<summary>
Represents the AA modes (number of samples) for a surface.
</summary>
</member>
<member name="T:Syroot.NintenTools.NSW.Bfres.GX2.GX2AttribFormat">
<summary>
Represents the format of a vertex attribute entry. Possible type conversions:
<para/>UNorm: attrib unsigned integer is converted to/from [0.0, 1.0] in shader.
<para/>UInt: attrib unsigned integer is copied to/from shader as unsigned int.
<para/>SNorm: attrib signed integer is converted to/from [-1.0, 1.0] in shader.
<para/>SInt: attrib signed integer is copied to/from shader as signed int.
<para/>Single: attrib single is copied to/from shader as Single.
<para/>UIntToSingle: attrib unsigned integer is converted Single in shader.
<para/>SIntToSingle: attrib signed integer is converted Single in shader.
</summary>
</member>
<member name="T:Syroot.NintenTools.NSW.Bfres.GX2.GX2BlendCombine">
<summary>
Represents how the terms of the blend function are combined.
</summary>
</member>
<member name="T:Syroot.NintenTools.NSW.Bfres.GX2.GX2BlendFunction">
<summary>
Represents the factors used in the blend function.
</summary>
</member>
<member name="T:Syroot.NintenTools.NSW.Bfres.GX2.GX2CompareFunction">
<summary>
Represents compare functions used for depth and stencil tests.
</summary>
</member>
<member name="T:Syroot.NintenTools.NSW.Bfres.GX2.GX2CompSel">
<summary>
Represents the source channels to map to a color channel in textures.
</summary>
</member>
<member name="T:Syroot.NintenTools.NSW.Bfres.GX2.GX2FrontFaceMode">
<summary>
Represents the vertex order of front-facing polygons.
</summary>
</member>
<member name="T:Syroot.NintenTools.NSW.Bfres.GX2.GX2IndexFormat">
<summary>
Represents the type in which vertex indices are stored.
</summary>
</member>
<member name="T:Syroot.NintenTools.NSW.Bfres.GX2.GX2LogicOp">
<summary>
Represents the logic op function to perform.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bfres.GX2.GX2LogicOp.Clear">
<summary>
Black
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bfres.GX2.GX2LogicOp.Set">
<summary>
White
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bfres.GX2.GX2LogicOp.Copy">
<summary>
Source (Default)
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bfres.GX2.GX2LogicOp.InverseCopy">
<summary>
~Source
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bfres.GX2.GX2LogicOp.NoOperation">
<summary>
Destination
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bfres.GX2.GX2LogicOp.Inverse">
<summary>
~Destination
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bfres.GX2.GX2LogicOp.And">
<summary>
Source &amp; Destination
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bfres.GX2.GX2LogicOp.NAnd">
<summary>
~(Source &amp; Destination)
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bfres.GX2.GX2LogicOp.Or">
<summary>
Source | Destination
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bfres.GX2.GX2LogicOp.NOr">
<summary>
~(Source | Destination)
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bfres.GX2.GX2LogicOp.XOr">
<summary>
Source ^ Destination
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bfres.GX2.GX2LogicOp.Equivalent">
<summary>
~(Source ^ Destination)
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bfres.GX2.GX2LogicOp.ReverseAnd">
<summary>
Source &amp; ~Destination
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bfres.GX2.GX2LogicOp.InverseAnd">
<summary>
~Source &amp; Destination
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bfres.GX2.GX2LogicOp.ReverseOr">
<summary>
Source | ~Destination
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bfres.GX2.GX2LogicOp.InverseOr">
<summary>
~Source | Destination
</summary>
</member>
<member name="T:Syroot.NintenTools.NSW.Bfres.GX2.GX2PolygonMode">
<summary>
Represents the base primitive used to draw each side of the polygon when dual-sided polygon mode is enabled.
</summary>
</member>
<member name="T:Syroot.NintenTools.NSW.Bfres.GX2.GX2PrimitiveType">
<summary>
Represents the type of primitives to draw.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bfres.GX2.GX2PrimitiveType.Points">
<summary>
Requires at least 1 element and 1 more to draw another primitive.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bfres.GX2.GX2PrimitiveType.Lines">
<summary>
Requires at least 2 elements and 2 more to draw another primitive.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bfres.GX2.GX2PrimitiveType.LineStrip">
<summary>
Requires at least 2 elements and 1 more to draw another primitive.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bfres.GX2.GX2PrimitiveType.Triangles">
<summary>
Requires at least 3 elements and 3 more to draw another primitive.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bfres.GX2.GX2PrimitiveType.TriangleFan">
<summary>
Requires at least 3 elements and 1 more to draw another primitive.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bfres.GX2.GX2PrimitiveType.TriangleStrip">
<summary>
Requires at least 3 elements and 1 more to draw another primitive.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bfres.GX2.GX2PrimitiveType.LinesAdjacency">
<summary>
Requires at least 4 elements and 4 more to draw another primitive.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bfres.GX2.GX2PrimitiveType.LineStripAdjacency">
<summary>
Requires at least 4 elements and 1 more to draw another primitive.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bfres.GX2.GX2PrimitiveType.TrianglesAdjacency">
<summary>
Requires at least 6 elements and 6 more to draw another primitive.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bfres.GX2.GX2PrimitiveType.TriangleStripAdjacency">
<summary>
Requires at least 6 elements and 2 more to draw another primitive.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bfres.GX2.GX2PrimitiveType.Rects">
<summary>
Requires at least 3 elements and 3 more to draw another primitive.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bfres.GX2.GX2PrimitiveType.LineLoop">
<summary>
Requires at least 2 elements and 1 more to draw another primitive.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bfres.GX2.GX2PrimitiveType.Quads">
<summary>
Requires at least 4 elements and 4 more to draw another primitive.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bfres.GX2.GX2PrimitiveType.QuadStrip">
<summary>
Requires at least 4 elements and 2 more to draw another primitive.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bfres.GX2.GX2PrimitiveType.TessellateLines">
<summary>
Requires at least 2 elements and 2 more to draw another primitive.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bfres.GX2.GX2PrimitiveType.TessellateLineStrip">
<summary>
Requires at least 2 elements and 1 more to draw another primitive.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bfres.GX2.GX2PrimitiveType.TessellateTriangles">
<summary>
Requires at least 3 elements and 3 more to draw another primitive.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bfres.GX2.GX2PrimitiveType.TessellateTriangleStrip">
<summary>
Requires at least 3 elements and 1 more to draw another primitive.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bfres.GX2.GX2PrimitiveType.TessellateQuads">
<summary>
Requires at least 4 elements and 4 more to draw another primitive.
</summary>
</member>
<member name="F:Syroot.NintenTools.NSW.Bfres.GX2.GX2PrimitiveType.TessellateQuadStrip">
<summary>
Requires at least 4 elements and 2 more to draw another primitive.
</summary>
</member>
<member name="T:Syroot.NintenTools.NSW.Bfres.GX2.GX2StencilFunction">
<summary>
Represents the stencil function to be performed if stencil tests pass.
</summary>
</member>
<member name="T:Syroot.NintenTools.NSW.Bfres.GX2.GX2SurfaceDim">
<summary>
Represents shapes of a given surface or texture.
</summary>
</member>
<member name="T:Syroot.NintenTools.NSW.Bfres.GX2.GX2SurfaceFormat">
<summary>
Represents desired texture, color-buffer, depth-buffer, or scan-buffer formats.
</summary>
</member>
<member name="T:Syroot.NintenTools.NSW.Bfres.GX2.GX2SurfaceUse">
<summary>
Represents Indicates how a given surface may be used. A final TV render target is one that will be copied to a
TV scan buffer. It needs to be designated to handle certain display corner cases (when a HD surface must be
scaled down to display in NTSC/PAL).
</summary>
</member>
<member name="T:Syroot.NintenTools.NSW.Bfres.GX2.GX2TexAnisoRatio">
<summary>
Represents maximum desired anisotropic filter ratios. Higher ratios give better image quality, but slower
performance.
</summary>
</member>
<member name="T:Syroot.NintenTools.NSW.Bfres.GX2.GX2TexBorderType">
<summary>
Represents type of border color to use.
</summary>
</member>
<member name="T:Syroot.NintenTools.NSW.Bfres.GX2.GX2TexClamp">
<summary>
Represents how to treat texture coordinates outside of the normalized coordinate texture range.
</summary>
</member>
<member name="T:Syroot.NintenTools.NSW.Bfres.GX2.GX2TexMipFilterType">
<summary>
Represents desired texture filter options between mip levels.
</summary>
</member>
<member name="T:Syroot.NintenTools.NSW.Bfres.GX2.GX2TexXYFilterType">
<summary>
Represents desired texture filter options within a plane.
</summary>
</member>
<member name="T:Syroot.NintenTools.NSW.Bfres.GX2.GX2TexZFilterType">
<summary>
Represents desired texture filter options between Z planes.
</summary>
</member>
<member name="T:Syroot.NintenTools.NSW.Bfres.GX2.GX2TileMode">
<summary>
Represents the desired tiling modes for a surface.
</summary>
</member>
</members>
</doc>