Sha256: 8ecd436fcc43ec611e2cb31ce1e89740f20aff80010e4be023dfada5e3139859
Contents?: true
Size: 520 Bytes
Versions: 3
Compression:
Stored size: 520 Bytes
Contents
# frozen_string_literal: true require 'dry-struct' module SpyAlleyApplication module Results module Nodes class MakeAccusationOptionNode < Dry::Struct @@can_handle_make_accusation_option = ::Types.Interface(:handle_make_accusation_option) attribute :player_id_list, ::Types::ArrayOfStrictInteger def accept(visitor, **args) @@can_handle_make_accusation_option.(visitor) visitor.handle_make_accusation_option(self, args) end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems