mirror of
https://github.com/Deathgarden-Rebirth/Deathgarden_Rebirth-Rewrite.git
synced 2026-09-08 03:06:03 -05:00
16 lines
331 B
PHP
16 lines
331 B
PHP
<?php
|
|
|
|
namespace App\Enums\Game;
|
|
|
|
enum ItemOrigin: string
|
|
{
|
|
case None = 'None';
|
|
case Alienware = 'Alienware';
|
|
case Deluxe = 'Deluxe';
|
|
case DeadByDaylight = 'DeadByDaylight';
|
|
case HeartsAndMinds = 'HeartAndMinds';
|
|
case DeathGarden1 = 'DeathGarden1';
|
|
case Event = 'Event';
|
|
case DlcT800 = 'DlcT800';
|
|
}
|