Created
March 6, 2014 11:33
-
-
Save msjyoo/9387756 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
Incorrect way | |
use PocketMine\ASpace\Block ABlock; | |
use PocketMine\BSpace\Block as BBlock; | |
ABlock::Blah; | |
BBlock::Blah; | |
Correct Way | |
use PocketMine\ASpace; | |
use PocketMine\BSpace; | |
ASpace\Block::Blah; | |
BSpace\Block::Blah; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
new api?