-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBaseTextureAtlasSource.java
More file actions
73 lines (57 loc) · 2.11 KB
/
Copy pathBaseTextureAtlasSource.java
File metadata and controls
73 lines (57 loc) · 2.11 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
package com.smiths;
/**
* (c) 2010 Nicolas Gramlich
* (c) 2011 Zynga Inc.
*
* @author Nicolas Gramlich
* @since 13:55:12 - 12.07.2011
*/
public abstract class BaseTextureAtlasSource implements ITextureAtlasSource {
// ===========================================================
// Constants
// ===========================================================
// ===========================================================
// Fields
// ===========================================================
protected int mTexturePositionX;
protected int mTexturePositionY;
// ===========================================================
// Constructors
// ===========================================================
public BaseTextureAtlasSource(final int pTexturePositionX, final int pTexturePositionY) {
this.mTexturePositionX = pTexturePositionX;
this.mTexturePositionY = pTexturePositionY;
}
// ===========================================================
// Getter & Setter
// ===========================================================
@Override
public int getTexturePositionX() {
return this.mTexturePositionX;
}
@Override
public int getTexturePositionY() {
return this.mTexturePositionY;
}
@Override
public void setTexturePositionX(final int pTexturePositionX) {
this.mTexturePositionX = pTexturePositionX;
}
@Override
public void setTexturePositionY(final int pTexturePositionY) {
this.mTexturePositionY = pTexturePositionY;
}
// ===========================================================
// Methods for/from SuperClass/Interfaces
// ===========================================================
@Override
public String toString() {
return this.getClass().getSimpleName() + "( " + this.getWidth() + "x" + this.getHeight() + " @ "+ this.mTexturePositionX + "/" + this.mTexturePositionY + " )";
}
// ===========================================================
// Methods
// ===========================================================
// ===========================================================
// Inner and Anonymous Classes
// ===========================================================
}