summaryrefslogtreecommitdiff
path: root/Penguloon/ContentPathManager.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Penguloon/ContentPathManager.cs')
-rw-r--r--Penguloon/ContentPathManager.cs82
1 files changed, 82 insertions, 0 deletions
diff --git a/Penguloon/ContentPathManager.cs b/Penguloon/ContentPathManager.cs
new file mode 100644
index 0000000..abe5bc3
--- /dev/null
+++ b/Penguloon/ContentPathManager.cs
@@ -0,0 +1,82 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+
+using Android.App;
+using Android.Content;
+using Android.OS;
+using Android.Runtime;
+using Android.Views;
+using Android.Widget;
+
+namespace Penguloon
+{
+ public static class ContentPathManager
+ {
+ public static List<string> TexturePaths { get; set; } = new List<string>()
+ {
+ "Bullets/cannon-ammo",
+ "Bullets/penguin-ammo",
+
+ "Objects/cannon",
+ "Objects/penguin1",
+ "Objects/penguin2",
+
+ "Tiles/ice",
+ "Tiles/waterCornerLeftDown",
+ "Tiles/waterCornerLeftTop",
+ "Tiles/waterCornerRightDown",
+ "Tiles/waterCornerRightTop",
+ "Tiles/waterHorizontal",
+ "Tiles/waterVertical",
+
+ "UI/btnDisabled",
+ "UI/btnIdle",
+ "UI/btnPressed",
+
+ "SplashArt/1",
+
+ "Enemies/red",
+ "Enemies/blue",
+ "Enemies/yellow",
+ "Enemies/green",
+ "Enemies/orange",
+ "Enemies/purple",
+ "Enemies/rainbow",
+ "Enemies/rainbow_dark",
+ };
+
+ public static List<string> FontPaths { get; set; } = new List<string>()
+ {
+ "Fonts/GWENT/16",
+ "Fonts/GWENT/24",
+ "Fonts/GWENT/36",
+ "Fonts/GWENT/48",
+ "Fonts/GWENT/72",
+ };
+
+ public static List<string> SoundPaths { get; set; } = new List<string>()
+ {
+ "Sounds/click",
+ };
+
+ public static List<string> TexturePathsPreLoad { get; set; } = new List<string>()
+ {
+ "UI/progressbar",
+ "UI/red",
+ "UI/snowflake",
+ "UI/background",
+ };
+
+ public static List<string> FontPathsPreLoad { get; set; } = new List<string>()
+ {
+ "Fonts/GWENT/128",
+ };
+
+ public static List<string> SoundPathsPreLoad { get; set; } = new List<string>()
+ {
+ "Sounds/baseline",
+ };
+ }
+} \ No newline at end of file