Method | Description | |
---|---|---|
Equals ( |
Compares two item stacks.
|
|
Equals ( object obj ) : bool |
Compares two item stacks.
|
|
GetHashCode ( ) : int |
Computes unique hash code for this item stack.
|
|
ItemStack ( byte data, int offset ) : System |
Loads an item stack from byte array.
|
|
ItemStack ( byte count, short type ) : System |
Creates new item stack from type and count.
|
|
ToRawData ( ) : byte[] |
Converts item stack to byte array.
|
|
ToString ( ) : string |
Converts item stack to string.
|
|
operator ( ) : bool |
Compares two item stacks.
|
public ItemStack ( byte data, int offset ) : System | ||
data | byte | /// Byte array containing item informations. /// |
offset | int | /// Offset where informations are located. /// |
return | System |
public ItemStack ( byte count, short type ) : System | ||
count | byte | /// Count of items in stack. /// |
type | short | /// Type of item or items. /// |
return | System |