TDoG-Skin/app/Events/TextureDeleting.php

14 lines
201 B
PHP
Raw Normal View History

2024-08-17 18:43:48 +08:00
<?php
namespace App\Events;
class TextureDeleting extends Event
{
public $texture;
public function __construct(\App\Models\Texture $texture)
{
$this->texture = $texture;
}
}