blessing-skin-server/app/Events/GetAvatarPreview.php

27 lines
405 B
PHP
Raw Normal View History

2016-08-29 14:25:24 +08:00
<?php
namespace App\Events;
use Illuminate\Queue\SerializesModels;
class GetAvatarPreview extends Event
{
use SerializesModels;
public $texture;
public $size;
/**
* Create a new event instance.
*
* @return void
*/
public function __construct(\App\Models\Texture $texture, $size)
{
$this->texture = $texture;
$this->size = $size;
}
}