diff options
| author | aldrikboy <aldrikboy@gmail.com> | 2017-12-11 22:02:13 +0100 |
|---|---|---|
| committer | aldrikboy <aldrikboy@gmail.com> | 2017-12-11 22:02:13 +0100 |
| commit | fd6fa4e5cebbe3edb65d50c78dcc8a97ce98ce64 (patch) | |
| tree | 8950f6b9023e0b47e22e1cd4869ab76de0803f4c /Penguloon/ContentPathManager.cs | |
| parent | c4c0f3c887d627b6432551e96009c7aeecd4cdd8 (diff) | |
First commit
Diffstat (limited to 'Penguloon/ContentPathManager.cs')
| -rw-r--r-- | Penguloon/ContentPathManager.cs | 82 |
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 |
