summaryrefslogtreecommitdiffhomepage
path: root/dragon/wizards.rb
blob: 3501b80e08bb0d1c6708411ca415adb9024535eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Copyright 2019 DragonRuby LLC
# MIT License
# wizards.rb has been released under MIT (*only this file*).

module GTK
  class Wizards
    attr_accessor :ios, :itch

    def initialize
      @ios = IOSWizard.new
      @itch = ItchWizard.new
    end
  end
end