service.resources.ResourcesCommos.java Source code

Java tutorial

Introduction

Here is the source code for service.resources.ResourcesCommos.java

Source

/*
 * Copyright 2013 Adrin Lpez Gonzlez <alg_18_k@hotmail.com>
 *         Julin Surez alfonso <julian_0141@hotmail.com>
 *
 * This file is part of GameDefender.
 *
 * GameDefender is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * GameDefender is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with GameDefender.  If not, see <http://www.gnu.org/licenses/>.
 */
package service.resources;

import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.graphics.g2d.Sprite;
import com.badlogic.gdx.graphics.g2d.TextureAtlas;

/**
 * ResourcesCommos.java
 *
 * @version May 26, 2013
 * @author Adrin Lpez Gonzlez
 * @author Julin Surez alfonso
 *
 */
public class ResourcesCommos {

    /* FIELDS */
    private static final String COMMONS_ATLAS = "data/commons/commons.atlas";
    public static Sprite buttonAudioUp, buttonAudioDown;

    private ResourcesCommos() {
    }

    /**
     * Initialized resources.
     */
    public static void initResources() {
        // Create atlas.
        TextureAtlas elementsAtlas = new TextureAtlas(Gdx.files.internal(COMMONS_ATLAS));
        // Sound and Audio.
        buttonAudioUp = elementsAtlas.createSprite("buttonAudioUp");
        buttonAudioDown = elementsAtlas.createSprite("buttonAudioDown");
    }
}