Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions plugin.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
---

name: CapesLocker
version: 1.2.0
main: Verre2OuiSki\CapesLocker\CapesLocker
version: 2.0.0
main: unarray\capeslocker\capeslocker
src-namespace-prefix: unarray\capeslocker
api: 4.0.0
extensions: [gd]

author: Verre2OuiSki
author: Unarray
description: Add your own capes to the server !
website: https://github.com/Verre2OuiSki
website: https://github.com/Unarray

# - - - - - - - - - - - - - - - -

Expand Down
20 changes: 20 additions & 0 deletions src/CapesLocker.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?php

declare(strict_types=1);

namespace unarray\capeslocker;

use pocketmine\plugin\PluginBase;
use pocketmine\utils\SingletonTrait;
use unarray\capeslocker\managers\CapesManager;

class CapesLocker extends PluginBase {

use SingletonTrait;

private CapesManager $capesManager;

public function onLoad(): void {
self::setInstance($this);
}
}
316 changes: 0 additions & 316 deletions src/Verre2OuiSki/CapesLocker/CapesLocker.php

This file was deleted.

Loading