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

26 lines
380 B
PHP
Raw Normal View History

2016-08-29 14:25:24 +08:00
<?php
namespace App\Events;
2018-02-16 16:25:35 +08:00
use App\Models\Texture;
2016-08-29 14:25:24 +08:00
class GetAvatarPreview extends Event
{
2018-02-16 16:25:35 +08:00
public $size;
2016-08-29 14:25:24 +08:00
public $texture;
/**
* Create a new event instance.
*
2019-12-14 11:10:37 +08:00
* @param int $size
*
2016-08-29 14:25:24 +08:00
* @return void
*/
2018-02-16 16:25:35 +08:00
public function __construct(Texture $texture, $size)
2016-08-29 14:25:24 +08:00
{
2018-02-16 16:25:35 +08:00
$this->texture = $texture;
2016-08-29 14:25:24 +08:00
$this->size = $size;
}
}