-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathProgramInfo.cs
More file actions
27 lines (23 loc) · 1.34 KB
/
ProgramInfo.cs
File metadata and controls
27 lines (23 loc) · 1.34 KB
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
namespace Desktoptale
{
public static class ProgramInfo
{
public const string NAME = "Desktoptale";
public const string AUTHOR = "Toastworth";
public const string VERSION = "1.10.0.0";
public const string VERSION_SUFFIX = "";
public const string DISCLAIMER = "UNDERTALE and DELTARUNE created by Toby Fox\nUndertale Yellow created by Team UTY\nNot affiliated with or endorsed by Toby Fox or Team UTY";
public const string CREDITS = @"Additional Credits:
@sdvlex, @RedCactusSound, @Comfnani, @TsukiMoonss - Testing
@yigarjpg - Custom Starlo running animation
@Inky_125 - Custom Chujin/Froggit sprites
UnderFail - Custom Chara sprites
FanFictionGamer - Custom Asriel sprites
";
public const string WELCOME_MESSAGE = @"Welcome to Desktoptale!
You can control your character by clicking it and using W/A/S/D or the arrow keys to move, X or Shift to run, Z or Space to trigger a mouse click where they are standing (left click by default, right click while holding Shift) and C to play a special animation (if available).
For more options such as changing or adding characters, right click on a character to open the menu.
Would you like to automatically open saved preset files (.dt) with this installation in the future? (This can be done at any time from Settings > Associate Preset Files)
";
}
}