blessing-skin-server/app/Events/GetSkinPreview.php
2016-11-18 23:06:15 +08:00

28 lines
414 B
PHP

<?php
namespace App\Events;
use App\Models\Texture;
use Illuminate\Queue\SerializesModels;
class GetSkinPreview extends Event
{
use SerializesModels;
public $texture;
public $size;
/**
* Create a new event instance.
*
* @return void
*/
public function __construct(Texture $texture, $size)
{
$this->texture = $texture;
$this->size = $size;
}
}