Blame |
Last modification |
View Log
| RSS feed
package com.gebauz.bauzoid.graphics.spritex;
import java.util.Vector;
public class AtlasDefinition
{
// Constants========================================================================================
// Embedded Types===================================================================================
public static class FrameInfo
{
public float x =
0;
public float y =
0;
public float w =
0;
public float h =
0;
public FrameInfo
(float _x,
float _y,
float _w,
float _h
)
{
x = _x
; y = _y
; w = _w
; h = _h
;
}
}
// Fields===========================================================================================
public Vector<FrameInfo
> frames =
new Vector<FrameInfo
>();
// Methods==========================================================================================
// Getters/Setters==================================================================================
}