Skip to content

Instantly share code, notes, and snippets.

View das_boot_player.rb
module DasBoot
class BoardCell
attr_accessor :value, :hunt_probability, :target_probability
def initialize(value)
@hunt_probability = 0
@target_probability = 0
@value = value
end
end