Delete 'RealTime/src/RealTime/tellTimeTask.php'

This commit is contained in:
Josh North 2018-11-02 12:46:21 -04:00
parent 62c3291501
commit 938154a781

View File

@ -1,33 +0,0 @@
<?php
/**
* Created by PhpStorm.
* User: Guillaume
* Date: 06/07/2015
* Time: 11:00
*/
namespace RealTime;
use pocketmine\scheduler\Task;
class tellTimeTask extends Task{
/**
* Actions to execute when run
*
* @param $currentTick
*
* @return void
*/
public $plugin;
public function __construct($plugin){
$this->plugin = $plugin;
}
public function onRun(int $currentTick)
{
// TODO: Implement onRun() method.
}
}