mirror of
https://github.com/Deathgarden-Rebirth/Deathgarden_Rebirth-Rewrite.git
synced 2026-09-07 18:56:00 -05:00
22 lines
459 B
PHP
22 lines
459 B
PHP
<?php
|
|
|
|
namespace App\Models\Admin;
|
|
|
|
use App\Enums\Game\ExperienceEventType;
|
|
use App\Models\AbstractFileBasedModel;
|
|
|
|
class CurrencyMultipliers extends AbstractFileBasedModel
|
|
{
|
|
const FILE_NAME = 'currencyMultipliers';
|
|
|
|
const CACHE_DURATION = 86400; // 1 Day
|
|
|
|
public float $currencyA = 1;
|
|
public float $currencyB = 1;
|
|
public float $currencyC = 1;
|
|
|
|
protected static function getDefault(): ?static
|
|
{
|
|
return new static();
|
|
}
|
|
} |