aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Engine/Tools.cs
diff options
context:
space:
mode:
authorAShifter <[email protected]>2017-11-17 20:29:46 -0700
committerAShifter <[email protected]>2017-11-17 20:29:46 -0700
commitebdc09fe679b4b06fd149c8fc6539244100ce896 (patch)
tree65dfe45bbfd194ddb534cc80107ab8e6d80cf5bc /ShiftOS.Engine/Tools.cs
parent1d0b393e6969d9671daead8049973a374421046f (diff)
parent97722fbe9d474adffbba0b92e9727c48a8205234 (diff)
downloadshiftos-rewind-ebdc09fe679b4b06fd149c8fc6539244100ce896.tar.gz
shiftos-rewind-ebdc09fe679b4b06fd149c8fc6539244100ce896.tar.bz2
shiftos-rewind-ebdc09fe679b4b06fd149c8fc6539244100ce896.zip
Merge remote-tracking branch 'refs/remotes/ShiftOS-Rewind/master'
Diffstat (limited to 'ShiftOS.Engine/Tools.cs')
-rw-r--r--ShiftOS.Engine/Tools.cs31
1 files changed, 0 insertions, 31 deletions
diff --git a/ShiftOS.Engine/Tools.cs b/ShiftOS.Engine/Tools.cs
deleted file mode 100644
index 792ccef..0000000
--- a/ShiftOS.Engine/Tools.cs
+++ /dev/null
@@ -1,31 +0,0 @@
-using System;
-using System.Drawing;
-using System.Drawing.Imaging;
-using System.IO;
-using System.Runtime.InteropServices;
-
-namespace ShiftOS.Engine
-{
- /// <summary>
- /// Random class full of unassorted [but also uncategorizable] tools.
- /// </summary>
- public static class Tools
- {
- public static Random Rnd = new Random();
-
- [DllImport("user32.dll", CharSet = CharSet.Auto)]
- public extern static bool DestroyIcon(IntPtr handle);
-
- public static Icon ToIcon(this Bitmap bm)
- {
- Icon tempicon = Icon.FromHandle(bm.GetHicon());
-
- Icon newIcon = tempicon.Clone() as Icon;
-
- //for some reason this exists
- DestroyIcon(tempicon.Handle);
-
- return newIcon;
- }
- }
-}