mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-08 19:02:59 +00:00
>_>
This commit is contained in:
@ -22,18 +22,18 @@
|
||||
namespace pocketmine\resourcepacks;
|
||||
|
||||
class ResourcePackInfoEntry{
|
||||
protected $name;
|
||||
protected $packId; //UUID
|
||||
protected $version;
|
||||
protected $uint64; // unknown
|
||||
|
||||
public function __construct(string $name, string $version, $uint64){
|
||||
$this->name = $name;
|
||||
public function __construct(string $packId, string $version, $uint64){
|
||||
$this->packId = $packId;
|
||||
$this->version = $version;
|
||||
$this->uint64 = $uint64;
|
||||
}
|
||||
|
||||
public function getName() : string{
|
||||
return $this->name;
|
||||
public function getPackId() : string{
|
||||
return $this->packId;
|
||||
}
|
||||
|
||||
public function getVersion() : string{
|
||||
|
Reference in New Issue
Block a user