Ejemplo n.º 1
0
 public Instance(Rectangle loc, OS os, List <string> args, FileEntry executionFile, IInterface exeInterface)
     : base(loc, os)
 {
     Arguments        = args;
     Interface        = exeInterface;
     ExecutionFile    = executionFile;
     IdentifierName   = Interface.Identifier;
     needsProxyAccess = Interface.NeedsProxyAccess;
     ramCost          = Interface.RamCost;
     Interface.OnConstruction(this);
 }