37 lines
714 B
C#
37 lines
714 B
C#
namespace HeathenEngineering.SteamApi.PlayerServices
|
|
{
|
|
public enum ValveItemDefSchemaAttributes
|
|
{
|
|
name = 0,
|
|
description = 1,
|
|
display_type = 2,
|
|
promo = 3,
|
|
drop_start_time = 4,
|
|
price = 5,
|
|
price_category = 6,
|
|
background_color = 7,
|
|
name_color = 8,
|
|
icon_url = 9,
|
|
icon_url_large = 10,
|
|
marketable = 11,
|
|
tradable = 12,
|
|
tags = 13,
|
|
tag_generators = 14,
|
|
store_tags = 15,
|
|
store_images = 16,
|
|
hidden = 17,
|
|
store_hidden = 18,
|
|
use_drop_limit = 19,
|
|
drop_limit = 20,
|
|
drop_interval = 21,
|
|
use_drop_window = 22,
|
|
drop_window = 23,
|
|
drop_max_per_winidow = 24,
|
|
granted_manually = 25,
|
|
use_bundle_price = 26,
|
|
item_slot = 27,
|
|
item_quality = 28,
|
|
purchase_bundle_discount = 29
|
|
}
|
|
}
|