blob: 11f1f10c3898565b646438bdfed8cf8527c0d145 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
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);
}
}
}
|