aboutsummaryrefslogtreecommitdiff
path: root/lib/MasterServer/Core/Version.pm
diff options
context:
space:
mode:
authorDarkelarious <darkelarious@333networks.com>2015-02-09 07:58:06 +0100
committerDarkelarious <darkelarious@333networks.com>2015-02-09 07:58:06 +0100
commit5057ec47aa9a1702b2483e0a0b3ba325bb0b7abb (patch)
treeb1a394f64ec7ec2cf69f33bceb54a5b51199c0a4 /lib/MasterServer/Core/Version.pm
parent6ac9d390e417b868b6ed79441b8cc6e1b2ebeb13 (diff)
downloadMasterServer-Perl-5057ec47aa9a1702b2483e0a0b3ba325bb0b7abb.tar.gz
MasterServer-Perl-5057ec47aa9a1702b2483e0a0b3ba325bb0b7abb.zip
receive UDP beacons, validate them and store with country indicator
Diffstat (limited to 'lib/MasterServer/Core/Version.pm')
-rwxr-xr-xlib/MasterServer/Core/Version.pm41
1 files changed, 41 insertions, 0 deletions
diff --git a/lib/MasterServer/Core/Version.pm b/lib/MasterServer/Core/Version.pm
new file mode 100755
index 0000000..5bd3f1c
--- /dev/null
+++ b/lib/MasterServer/Core/Version.pm
@@ -0,0 +1,41 @@
+
+package MasterServer::Core::Version;
+
+use strict;
+use warnings;
+use Exporter 'import';
+
+our @EXPORT = qw| version |;
+
+
+################################################################################
+#
+# Version information
+#
+################################################################################
+sub version {
+ my $self = shift;
+
+ # version and author information
+ # -- addition to the LICENCE, you are only allowed to modify these lines
+ # if you send Darkelarious a postcard or email with your compliments or,
+ # in case of a company editing, a letter of commendation.
+ #
+ # You are not allowed to modify these variables without making (significant)
+ # alterations to the source code of this master server program. Only changing
+ # these fields does not count as a significant alteration.
+
+ # master type
+ $self->{build_type} = "333networks Masterserver-Perl";
+
+ # version
+ $self->{build_version} = "0.2";
+
+ # date yyyy-mm-dd
+ $self->{build_date} = "2015-01-31";
+
+ #author, email
+ $self->{build_author} = "Darkelarious, darkelarious\@333networks.com";
+}
+
+1;