From fd6fa4e5cebbe3edb65d50c78dcc8a97ce98ce64 Mon Sep 17 00:00:00 2001 From: aldrikboy Date: Mon, 11 Dec 2017 22:02:13 +0100 Subject: First commit --- Penguloon/ContentPathManager.cs | 82 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 Penguloon/ContentPathManager.cs (limited to 'Penguloon/ContentPathManager.cs') 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 TexturePaths { get; set; } = new List() + { + "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 FontPaths { get; set; } = new List() + { + "Fonts/GWENT/16", + "Fonts/GWENT/24", + "Fonts/GWENT/36", + "Fonts/GWENT/48", + "Fonts/GWENT/72", + }; + + public static List SoundPaths { get; set; } = new List() + { + "Sounds/click", + }; + + public static List TexturePathsPreLoad { get; set; } = new List() + { + "UI/progressbar", + "UI/red", + "UI/snowflake", + "UI/background", + }; + + public static List FontPathsPreLoad { get; set; } = new List() + { + "Fonts/GWENT/128", + }; + + public static List SoundPathsPreLoad { get; set; } = new List() + { + "Sounds/baseline", + }; + } +} \ No newline at end of file -- cgit v1.2.3-70-g09d2