package engine.loader; import engine.graphics.Texture; public class ControllerPromptTextureLoader { public Texture up; public Texture down; public Texture left; public Texture right; public Texture X; public Texture A; public Texture Y; public Texture B; public ControllerPromptTextureLoader(){ up = new Texture("textures/keyboard_pad_glyphs/xbox/XboxOne_Dpad_Up.png", 0); down = new Texture("textures/keyboard_pad_glyphs/xbox/XboxOne_Dpad_Down.png", 0); left = new Texture("textures/keyboard_pad_glyphs/xbox/XboxOne_Dpad_Left.png", 0); right = new Texture("textures/keyboard_pad_glyphs/xbox/XboxOne_Dpad_Right.png", 0); A = new Texture("textures/keyboard_pad_glyphs/xbox/XboxOne_A.png", 0); B = new Texture("textures/keyboard_pad_glyphs/xbox/XboxOne_B.png", 0); X = new Texture("textures/keyboard_pad_glyphs/xbox/XboxOne_X.png", 0); Y = new Texture("textures/keyboard_pad_glyphs/xbox/XboxOne_Y.png", 0); } }