Esempio n. 1
0
 /// <summary>
 /// Does a Script exist with the given name?
 /// </summary>
 /// <param name="r">The RAM used for this execution.</param>
 /// <param name="scriptName">The name of the Script to check for (nested brack operations execute).</param>
 /// <returns>If a Script exists with the given name.</returns>
 public bool HasScript(RAM r, object scriptName)
 {
     return(GlobalMemory.HasScript(r, scriptName));
 }
Esempio n. 2
0
 /// <summary>
 /// Does a Script exist with the given name?
 /// </summary>
 /// <param name="scriptName">The name of the Script to check for.</param>
 /// <returns>If a Script exists with the given name.</returns>
 public bool HasScript(string scriptName)
 {
     return(GlobalMemory.HasScript(scriptName));
 }