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

28 lines
414 B
PHP
Raw Normal View History

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