line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# Declare our package |
2
|
|
|
|
|
|
|
package Games::AssaultCube::Log::Line::StartupText; |
3
|
|
|
|
|
|
|
|
4
|
|
|
|
|
|
|
# import the Moose stuff |
5
|
1
|
|
|
1
|
|
3724
|
use Moose; |
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
# Initialize our version |
8
|
|
|
|
|
|
|
use vars qw( $VERSION ); |
9
|
|
|
|
|
|
|
$VERSION = '0.04'; |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
extends 'Games::AssaultCube::Log::Line::Base'; |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
no Moose; |
14
|
|
|
|
|
|
|
__PACKAGE__->meta->make_immutable; |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
1; |
17
|
|
|
|
|
|
|
__END__ |
18
|
|
|
|
|
|
|
=head1 NAME |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
Games::AssaultCube::Log::Line::StartupText - Describes the StartupText event in a log line |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head1 ABSTRACT |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
Describes the StartupText event in a log line |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head1 DESCRIPTION |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
This module holds the "StartupText" event data from a log line. Normally, you would not use this class directly |
29
|
|
|
|
|
|
|
but via the L<Games::AssaultCube::Log::Line> class. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
This line is emitted when the AC server starts up and includes a variety of lines. |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head2 Attributes |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
Those attributes hold information about the event. As this class extends the L<Games::AssaultCube::Log::Line::Base> |
36
|
|
|
|
|
|
|
class, you can also use it's attributes too. |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
No extra attributes for this event. |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head1 AUTHOR |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
Apocalypse E<lt>apocal@cpan.orgE<gt> |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
Props goes to the BS clan for the support! |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
This project is sponsored by L<http://cubestats.net> |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
Copyright 2009 by Apocalypse |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or modify |
53
|
|
|
|
|
|
|
it under the same terms as Perl itself. |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=cut |