BattleNet.ItemEntry.ItemEntry C# (CSharp) Метод

ItemEntry() публичный Метод

public ItemEntry ( String name, String type, Item classification, UInt32 width, UInt32 height, System.Boolean stackable, System.Boolean usable, System.Boolean throwable ) : System
name String
type String
classification Item
width System.UInt32
height System.UInt32
stackable System.Boolean
usable System.Boolean
throwable System.Boolean
Результат System
        public ItemEntry(String name, String type, Item.ClassificationType classification, UInt32 width, UInt32 height, Boolean stackable, Boolean usable, Boolean throwable)
        {
            Name            = name;
            Type            = type;
            Classification  = classification;
            Width           = width;
            Height          = height;
            Stackable       = stackable;
            Usable          = usable;
            Throwable       = throwable;
        }

Same methods

ItemEntry::ItemEntry ( ) : System