-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConstants.cs
More file actions
26 lines (25 loc) · 1.27 KB
/
Constants.cs
File metadata and controls
26 lines (25 loc) · 1.27 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
using Microsoft.Xna.Framework;
namespace ichortower.SecretWoodsSnorlax
{
internal class Constants
{
public static string id_Mod = "ichortower.SecretWoodsSnorlax";
public static string id_Flute = $"{id_Mod}_StrangeFlute";
public static string id_FluteCue = $"{id_Mod}_flutemelody";
public static string id_FluteCueShort = $"{id_Mod}_fluteshort";
public static string id_Event = $"{id_Mod}_e1";
public static string id_EventOld = "191120001";
// this one is missing the final digit (1-3) on purpose
public static string id_OldNullEvent = "19112010";
public static string ct_OldPrefix = "SecretWoodsSnorlax_Hint";
public static string ct_Prefix = $"{id_Mod}_CT";
public static string mail_OldHints = "SecretWoodsSnorlax_HintsActive";
public static string mail_Hints = $"{id_Mod}_Mail_Hints";
public static string mail_OldMoved = "SecretWoodsSnorlax_Moved";
public static string mail_Moved = $"{id_Mod}_Mail_Moved";
public static Vector2 vec_BlockingPosition = new Vector2(1f, 6f);
/* not actually constant; is changed if Lunna is installed */
public static Vector2 vec_MovedPosition = new Vector2(3f, 4f);
public static int msPerBeat = 432;
}
}