<?php __HALT_COMPILER(); ?>
µ                     src/oldsce/Main.phpg  ­\‡[g  /mf!¶      2   src/pocketmine/event/server/ServerCommandEvent.phpª  ­\‡[ª  ™áü¶      
   plugin.ymlJ   ­\‡[J   ]¼ f¶      <?php

namespace oldsce;

use pocketmine\plugin\PluginBase;

class Main extends PluginBase {

	public function onEnable() {
		$this->getLogger()->info("Â§a[èµ·å‹•] Â§bOldServerCommandEvent Â§aã‚’èµ·å‹•ã—ã¾ã—ãŸã€‚");
	}

	public function onDisable() {
		$this->getLogger()->info("Â§c[çµ‚äº†]] Â§bOldServerCommandEvent Â§aã‚’çµ‚äº†ã—ã¦ã„ã¾ã™...");
	}
}<?php

/*
 *               _ _
 *         /\   | | |
 *        /  \  | | |_ __ _ _   _
 *       / /\ \ | | __/ _` | | | |
 *      / ____ \| | || (_| | |_| |
 *     /_/    \_|_|\__\__,_|\__, |
 *                           __/ |
 *                          |___/
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * @author TuranicTeam
 * @link https://github.com/TuranicTeam/Altay
 *
 */

declare(strict_types=1);

namespace pocketmine\event\server;

use pocketmine\command\CommandSender;
use pocketmine\event\Cancellable;

/**
 * Called when the console runs a command, early in the process
 *
 * You don't want to use this except for a few cases like logging commands,
 * blocking commands on certain places, or applying modifiers.
 *
 * The message DOES NOT contain a slash at the start
 */
class ServerCommandEvent extends ServerEvent implements Cancellable{
	/** @var string */
	protected $command;

	/** @var CommandSender */
	protected $sender;

	/**
	 * @param CommandSender $sender
	 * @param string        $command
	 */
	public function __construct(CommandSender $sender, string $command){
		$this->sender = $sender;
		$this->command = $command;
	}

	/**
	 * @return CommandSender
	 */
	public function getSender() : CommandSender{
		return $this->sender;
	}

	/**
	 * @return string
	 */
	public function getCommand() : string{
		return $this->command;
	}

	/**
	 * @param string $command
	 */
	public function setCommand(string $command) : void{
		$this->command = $command;
	}

}name: AAAOldSCE
api: 
  - 3.0.0
  - 4.0.0
version: 1.0.0
main: oldsce\Mainô0~|„ù¢-'éœÐ.?¨-³   GBMB