mirror of
https://github.com/chylex/Code-Statistics.git
synced 2024-11-24 12:42:46 +01:00
14 lines
336 B
C#
14 lines
336 B
C#
using CodeStatisticsCore.Handling;
|
|
|
|
namespace CodeStatistics.Handling.General{
|
|
class FolderHandler : IFolderHandler{
|
|
public int Weight{
|
|
get { return 1; }
|
|
}
|
|
|
|
public void Process(string folder, Variables.Root variables){
|
|
variables.Increment("dirStructureFolders");
|
|
}
|
|
}
|
|
}
|