コード例 #1
0
ファイル: Script.cs プロジェクト: qingfeng346/Scorpio-CSharp
 void AddBasicPrototype(ScriptType type, ref ScriptValue typeValue)
 {
     typeValue = new ScriptValue(type);
     Global.SetValue(type.TypeName, typeValue);
 }
コード例 #2
0
ファイル: Script.cs プロジェクト: qingfeng346/Scorpio-CSharp
 void AddPrimitivePrototype(string name, ref ScriptType type, ref ScriptValue typeValue)
 {
     type      = new ScriptTypePrimitive(name, TypeObjectValue);
     typeValue = new ScriptValue(type);
     Global.SetValue(name, typeValue);
 }