Platinus2016/SharedCode/Roblox/Grid/Rcc/ScriptExecution.php

20 lines
374 B
PHP

<?php
// This file defines the ScriptExecution class.
namespace Roblox\Grid\Rcc;
class ScriptExecution {
public $name;
public $script;
public $arguments = [];
function __construct($name, $script, $arguments = []) {
$this->name = $name;
$this->script = $script;
foreach ($arguments as $arg) {
array_push($this->arguments, new LuaValue($arg));
}
}
}
// EOF