com.badlogic.gdx.spriter.data.SpriterCharacterMap.java Source code

Java tutorial

Introduction

Here is the source code for com.badlogic.gdx.spriter.data.SpriterCharacterMap.java

Source

//Copyright (c) 2015 The original author or authors
//
//This software may be modified and distributed under the terms
//of the zlib license.  See the LICENSE file for details.

package com.badlogic.gdx.spriter.data;

import com.badlogic.gdx.utils.Array;

public class SpriterCharacterMap extends SpriterElement {

    public Array<SpriterMapInstruction> maps = new Array<SpriterMapInstruction>();

    @Override
    public String toString() {
        return "SpriterCharacterMap [maps=" + maps + ", id=" + id + ", name=" + name + "]";
    }

}