public ToolInstance(ToolDefinition theDefinition, TestExecution theExecution) : base(theDefinition, theExecution) { if (theDefinition.Prerequisite != null) { mPrerequisite = theExecution.DataValueRegistry.GetObject(theDefinition.Prerequisite.Name); } theExecution.RegisterWorker(this); }
public void SetObjectPosition(int row, int col, ToolDefinition tool) { // TODO: throw error or adjust position if value isn't null m_Array[row, col] = tool; }