-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathITextureAtlasSource.java
More file actions
32 lines (24 loc) · 876 Bytes
/
Copy pathITextureAtlasSource.java
File metadata and controls
32 lines (24 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package com.smiths;
import org.andengine.util.modifier.IModifier.DeepCopyNotSupportedException;
/**
* (c) 2010 Nicolas Gramlich
* (c) 2011 Zynga Inc.
*
* @author Nicolas Gramlich
* @since 11:46:56 - 12.07.2011
*/
public interface ITextureAtlasSource {
// ===========================================================
// Final Fields
// ===========================================================
// ===========================================================
// Methods
// ===========================================================
public int getTexturePositionX();
public int getTexturePositionY();
public void setTexturePositionX(final int pTexturePositionX);
public void setTexturePositionY(final int pTexturePositionY);
public int getWidth();
public int getHeight();
public ITextureAtlasSource deepCopy() throws DeepCopyNotSupportedException;
}