summaryrefslogtreecommitdiffstats
path: root/lib/Bot/Games/Game/Ghost.pm
blob: 1268e451f48f767e47639c6a9e9571b5fb0e8cc3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/perl
package Bot::Games::Game::Ghost;
use Moose;
extends 'Bot::Games::Game::Ghostlike';

has '+help' => (
    default => "ghost help",
);

sub valid_move {
    my $self = shift;
    my ($move) = @_;
    return uc(substr($move, 0, -1)) eq $self->state;
}

__PACKAGE__->meta->make_immutable;
no Moose;

1;