Archived
1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
cli-old/lib/actions.rb

28 lines
835 B
Ruby
Raw Normal View History

2017-07-27 20:33:32 -04:00
# frozen_string_literal: true
require 'obredux'
require 'actions/load_friends'
require 'actions/add_friend'
require 'actions/add_friend_message'
2017-07-27 21:47:18 -04:00
require 'actions/change_friend_name'
require 'actions/change_friend_status'
require 'actions/change_friend_status_message'
require 'actions/new_message_enter'
require 'actions/new_message_putc'
2017-07-27 20:33:32 -04:00
module Actions
2017-07-27 21:47:18 -04:00
class WindowLeft < Obredux::Action; end
class WindowRight < Obredux::Action; end
class MenuUp < Obredux::Action; end
class MenuDown < Obredux::Action; end
class NewMessageLeft < Obredux::Action; end
class NewMessageRight < Obredux::Action; end
class NewMessageHome < Obredux::Action; end
class NewMessageEnd < Obredux::Action; end
class NewMessageBackspace < Obredux::Action; end
class NewMessageDelete < Obredux::Action; end
2017-07-27 20:33:32 -04:00
end