This repository has been archived by the owner on Feb 23, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'altay/stable' into altay3
- Loading branch information
Showing
7 changed files
with
182 additions
and
129 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<?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 | ||
* | ||
*/ | ||
|
||
namespace pocketmine\maps\renderer; | ||
|
||
use pocketmine\maps\MapData; | ||
use pocketmine\Player; | ||
|
||
interface MapRenderer{ | ||
|
||
public function initialize(MapData $mapData) : void; | ||
|
||
/** | ||
* Renders a map | ||
* | ||
* @param MapData $mapData | ||
* @param Player $player | ||
*/ | ||
public function render(MapData $mapData, Player $player) : void; | ||
} |
Oops, something went wrong.