mirror of
https://github.com/seriocomedy/ShiftOS-C-.git
synced 2025-01-22 18:51:57 -05:00
a3fc2c45ec
Committing everything I've got - so that I can take a break for a few months and work on other things.
49 lines
1.2 KiB
C#
49 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace ShiftOS.FinalMission
|
|
{
|
|
public partial class MissionGuide : Form
|
|
{
|
|
public MissionGuide()
|
|
{
|
|
InitializeComponent();
|
|
this.TopMost = true;
|
|
}
|
|
|
|
public Action OnButtonClick = null;
|
|
|
|
public bool ShowButton
|
|
{
|
|
get { return btnstart.Visible; }
|
|
set { btnstart.Visible = value; }
|
|
}
|
|
|
|
public string ButtonText
|
|
{
|
|
get { return btnstart.Text; }
|
|
set { btnstart.Text = value; }
|
|
}
|
|
|
|
|
|
|
|
private void btnstart_Click(object sender, EventArgs e)
|
|
{
|
|
OnButtonClick.Invoke();
|
|
}
|
|
|
|
private void tmr_setupui_Tick(object sender, EventArgs e)
|
|
{
|
|
lbprompt.Text = EndGameHandler.CurrentObjective.ToUpper() + Environment.NewLine + Environment.NewLine;
|
|
lbprompt.Text += EndGameHandler.CurrentObjectivePrompt;
|
|
this.Location = new Point(15, 45);
|
|
}
|
|
}
|
|
}
|