예제 #1
0
        void LoadTextures()
        {
            var allTextures = Enum.GetValues(typeof(TextureIdentifier));

            foreach (TextureIdentifier texture in allTextures)
            {
                Textures.Load(texture);
            }
            Textures.Get(TextureIdentifier.Background).Repeated = true;
        }