package Games::WebPaper::Question;

use warnings;
use strict;
use Fcntl;

=head1 NAME

Games::WebPaper::Question - Encapsulates question and answers

=cut
our $VERSION = '0.01';

=head1 Synopsis

    use Games::WebPaper::Question;

    my $team = Games::WebPaper::Question->new("question","ans1","ans2");

=head1 Functions

=head2 new

=cut

sub new {
  my $class = shift;
  my $self = bless {}, $class;

  return $self;
}



=head1 Author

Alberto Simoes, C<< <ambs@cpan.org> >>

=head1 Bugs

Please report any bugs or feature requests to
C<bug-games-webpaper@rt.cpan.org>, or through the web interface at
L<http://rt.cpan.org>.  I will be notified, and then you'll automatically
be notified of progress on your bug as I make changes.

=head1 Copyright & License

Copyright 2004 Alberto Simoes, All Rights Reserved.

This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.

=cut

1; # End of Games::WebPaper::Question
