Skip to content

Commit

Permalink
Updated properties
Browse files Browse the repository at this point in the history
  • Loading branch information
emist committed Sep 26, 2011
1 parent 02f5204 commit b3f2a85
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions UI/WindowHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ public partial class WindowHandler : Utils
AccountManager accManager;
private LogViewer logViewer;
private Logger logger;
private AgentHandler aHandler;

private static Random random = new Random((int)DateTime.Now.Ticks);
private string RandomString(int size)
Expand Down Expand Up @@ -320,6 +321,7 @@ public WindowHandler(ClientWindow cw)
accManager = new AccountManager();
logViewer = new LogViewer();
logger = new Logger(this, "a");


Process p = null;

Expand Down Expand Up @@ -472,6 +474,7 @@ private void inject()
eveSession = new Session(this);
cam = new Camera(this);
local = new LocalHandler(this);
aHandler = new AgentHandler(this);
mes = new MessageStruct() { Text = pipename };

backgroundScripts = new List<Scriptable>();
Expand Down Expand Up @@ -1065,6 +1068,14 @@ public Logger LOGGER
}
}

public AgentHandler AGENT
{
get
{
return aHandler;
}
}

}
}

0 comments on commit b3f2a85

Please sign in to comment.