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
2017-08-12 02:32:29 +00:00

25 lines
821 B
Ruby

# frozen_string_literal: true
require 'actions/load_friends'
require 'actions/add_friend'
require 'actions/add_friend_message'
require 'actions/change_friend_name'
require 'actions/change_friend_status'
require 'actions/change_friend_status_message'
require 'actions/add_out_friend_message'
require 'actions/new_message_putc'
module Actions
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
end