Sha256: 5652ec1a4a84d490a786ffed8398a9059e6424dab38d154cc333ee34c780651d
Contents?: true
Size: 385 Bytes
Versions: 4
Compression:
Stored size: 385 Bytes
Contents
module TD::Types # Contains one row of the game high score table. # # @attr position [Integer] Position in the high score table. # @attr user_id [Integer] User identifier. # @attr score [Integer] User score. class GameHighScore < Base attribute :position, TD::Types::Integer attribute :user_id, TD::Types::Integer attribute :score, TD::Types::Integer end end
Version data entries
4 entries across 4 versions & 2 rubygems