The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package FBP::ScrolledWindow;

use Mouse;

our $VERSION = '0.41';

extends 'FBP::Window';
with    'FBP::Children';

has scroll_rate_x => (
	is  => 'ro',
	isa => 'Int',
);

has scroll_rate_y => (
	is  => 'ro',
	isa => 'Int',
);

no Mouse;
__PACKAGE__->meta->make_immutable;

1;