35 lines
491 B
PHP
35 lines
491 B
PHP
<?php
|
|
|
|
namespace App\Library\Clones;
|
|
|
|
use DB;
|
|
|
|
use App\Library\Esi\Esi;
|
|
|
|
class CloneSaver {
|
|
/**
|
|
* Check if the scope is in the database for the character
|
|
*
|
|
* @param charId
|
|
* @param scope1
|
|
* @param scope2
|
|
*
|
|
* @return true,false
|
|
*/
|
|
public function HaveScopes($charId) {
|
|
|
|
}
|
|
|
|
public function RunCloneSaver($charId){
|
|
|
|
}
|
|
|
|
private function GetLocation($charId) {
|
|
|
|
}
|
|
|
|
private function GetImplants($charId) {
|
|
|
|
}
|
|
|
|
} |