UHC/src/Ad5001/UHC/event/UHCEvent.php

19 lines
381 B
PHP
Raw Normal View History

2016-06-10 05:19:40 +00:00
<?php
# _ _ _ _ _____
# | | | | | | |/ ____|
# | | | | |__| | |
# | | | | __ | |
# | |__| | | | | |____
# \____/|_| |_|\_____|
# The most customisable UHC plugin for Minecraft PE !
2016-06-10 14:00:18 +00:00
namespace Ad5001\UHC\event;
2016-06-10 05:19:40 +00:00
use pocketmine\event\Event;
abstract class UHCEvent extends Event {
2016-08-20 07:24:06 +00:00
2016-06-10 05:19:40 +00:00
public function getGame() {
return $this->game;
}
2016-08-20 07:24:06 +00:00
2016-06-10 05:19:40 +00:00
}