mirror of
https://git.alee14.me/shiftos-archive/ShiftOS_TheReturn.git
synced 2025-01-22 18:02:16 +00:00
commit
0b3873bb94
5 changed files with 79 additions and 0 deletions
37
ShiftOS.WinForms/Applications/AudioPlayer.Designer.cs
generated
Normal file
37
ShiftOS.WinForms/Applications/AudioPlayer.Designer.cs
generated
Normal file
|
@ -0,0 +1,37 @@
|
|||
namespace ShiftOS.WinForms.Applications
|
||||
{
|
||||
partial class AudioPlayer
|
||||
{
|
||||
/// <summary>
|
||||
/// Required designer variable.
|
||||
/// </summary>
|
||||
private System.ComponentModel.IContainer components = null;
|
||||
|
||||
/// <summary>
|
||||
/// Clean up any resources being used.
|
||||
/// </summary>
|
||||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
if (disposing && (components != null))
|
||||
{
|
||||
components.Dispose();
|
||||
}
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
|
||||
#region Component Designer generated code
|
||||
|
||||
/// <summary>
|
||||
/// Required method for Designer support - do not modify
|
||||
/// the contents of this method with the code editor.
|
||||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
components = new System.ComponentModel.Container();
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
41
ShiftOS.WinForms/Applications/AudioPlayer.cs
Normal file
41
ShiftOS.WinForms/Applications/AudioPlayer.cs
Normal file
|
@ -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()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
|
@ -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;
|
||||
|
|
BIN
ShiftOS.WinForms/SystemIcons/iconShiftLetters.png
Normal file
BIN
ShiftOS.WinForms/SystemIcons/iconShiftLetters.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 243 B |
Binary file not shown.
Before Width: | Height: | Size: 47 KiB After Width: | Height: | Size: 235 B |
Loading…
Reference in a new issue