GameType enumeration


Info

This page lists enumeration values for different game types. Note that this page does not contain actual source code from the Hearthstone The Hearthstone icon Hearthstone (formerly known as Hearthstone: Heroes of Warcraft 1] 2]) is a free-to-play digital collectible card game from Blizzard Entertainment. It was first announced in a presentation by Rob Pardo at the hearthstone client, but is simply a reverse-engineered set of values.

Values table

Name Int value Description
GT_UNKNOWN 0
GT_VS_AI 1
GT_VS_FRIEND 2
GT_TUTORIAL 4
GT_ARENA 5
GT_TEST 6
GT_RANKED 7
GT_UNRANKED 8
GT_TAVERNBRAWL 16
GT_LAST 17

Videos

C# source code

public enum GameType { 	GT_UNKNOWN = 0, 	GT_VS_AI = 1, 	GT_VS_FRIEND = 2, 	GT_TUTORIAL = 4, 	GT_ARENA = 5, 	GT_TEST = 6, 	GT_RANKED = 7, 	GT_UNRANKED = 8, 	GT_TAVERNBRAWL = 16, 	GT_LAST = 17 }