diff --git a/ShiftOS.WinForms/Applications/AudioPlayer.Designer.cs b/ShiftOS.WinForms/Applications/AudioPlayer.Designer.cs
new file mode 100644
index 0000000..3cc88df
--- /dev/null
+++ b/ShiftOS.WinForms/Applications/AudioPlayer.Designer.cs
@@ -0,0 +1,37 @@
+namespace ShiftOS.WinForms.Applications
+{
+ partial class AudioPlayer
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Component Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ components = new System.ComponentModel.Container();
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ }
+
+ #endregion
+ }
+}
diff --git a/ShiftOS.WinForms/Applications/AudioPlayer.cs b/ShiftOS.WinForms/Applications/AudioPlayer.cs
new file mode 100644
index 0000000..b7dc9ee
--- /dev/null
+++ b/ShiftOS.WinForms/Applications/AudioPlayer.cs
@@ -0,0 +1,41 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Drawing;
+using System.Data;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+using ShiftOS.Engine;
+
+namespace ShiftOS.WinForms.Applications
+{
+ public partial class AudioPlayer : UserControl, IShiftOSWindow
+ {
+ public AudioPlayer()
+ {
+ InitializeComponent();
+ }
+
+ public void OnLoad()
+ {
+
+ }
+
+ public void OnSkinLoad()
+ {
+
+ }
+
+ public bool OnUnload()
+ {
+ return true;
+ }
+
+ public void OnUpgrade()
+ {
+
+ }
+ }
+}
diff --git a/ShiftOS.WinForms/Applications/ShiftLetters.cs b/ShiftOS.WinForms/Applications/ShiftLetters.cs
index 6ff528a..0dd1505 100644
--- a/ShiftOS.WinForms/Applications/ShiftLetters.cs
+++ b/ShiftOS.WinForms/Applications/ShiftLetters.cs
@@ -39,6 +39,7 @@ namespace ShiftOS.WinForms.Applications
[Launcher("ShiftLetters", false, null, "Games")]
[RequiresUpgrade("shiftletters")]
[WinOpen("shiftletters")]
+ [DefaultIcon("iconShiftLetters")]
public partial class ShiftLetters : UserControl, IShiftOSWindow
{
int lives = 7;
diff --git a/ShiftOS.WinForms/SystemIcons/iconShiftLetters.png b/ShiftOS.WinForms/SystemIcons/iconShiftLetters.png
new file mode 100644
index 0000000..c82d0c7
Binary files /dev/null and b/ShiftOS.WinForms/SystemIcons/iconShiftLetters.png differ
diff --git a/ShiftOS.WinForms/SystemIcons/iconTerminal.png b/ShiftOS.WinForms/SystemIcons/iconTerminal.png
index df5e779..7a20771 100644
Binary files a/ShiftOS.WinForms/SystemIcons/iconTerminal.png and b/ShiftOS.WinForms/SystemIcons/iconTerminal.png differ