The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package UAV::Pilot::EventHandler;
use v5.14;
use Moose::Role;

requires 'process_events';

1;
__END__


=head1 NAME

  UAV::Pilot::EventHandler

=head1 DESCRIPTION

Role for objects that will be passed into C<UAV::Pilot::Events>.

Requires the method C<process_events>, which will be called to handle the events for this 
object.

=cut