blob: 23c9e3f4d51234c9ce63aa7bbe7c0d41cf1bb69c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.IO;
namespace TimeHACK.Engine
{
public static class DesktopController
{
public static void ViewDesktopIcons(ListView baseIcons, ref ListView theView, string Directory)
{
}
}
}
|