18 lines
549 B
C#
18 lines
549 B
C#
namespace Barotrauma
|
|
{
|
|
abstract partial class MissionMode : GameMode
|
|
{
|
|
public override void ShowStartMessage()
|
|
{
|
|
foreach (Mission mission in missions)
|
|
{
|
|
new GUIMessageBox(mission.Name, mission.Description, new string[0], type: GUIMessageBox.Type.InGame, icon: mission.Prefab.Icon, parseRichText: true)
|
|
{
|
|
IconColor = mission.Prefab.IconColor,
|
|
UserData = "missionstartmessage"
|
|
};
|
|
}
|
|
}
|
|
}
|
|
}
|