Method: Reight::R8#apps

Defined in:
lib/reight/reight.rb

#appsObject



22
23
24
25
26
27
28
29
# File 'lib/reight/reight.rb', line 22

def apps()
  @apps ||= [].tap {|a|
    a << Reight::Runner      .new(project)
    a << Reight::SpriteEditor.new(project) if edit?
    a << Reight::MapEditor   .new(project) if edit?
    a << Reight::SoundEditor .new(project) if edit?
  }
end