package org.cocos2d.types;
//! A 2D grid_
size
public class ccGridSize {
public int x;
public int y;
//! helper
function to create a ccGridSize
public static ccGridSize ccg(final int x, final int y) {
return new ccGridSize(x, y);
}
public ccGridSize(int x, int y) {
this.x = x;
this.y = y;
}
public
ccGridSize(ccGridSize gs) {
this.x = gs.x;
this.y = gs.y;
}
}
그리드 사이즈를 위한 클래스 입니다.
별다른거없고
가로 세로 크기 지정으로 위해서 int 로 값을 만든것뿐이네요
생성 예)
CCGridSize gs = CCGridSize.ccg(4,5);
입니다.
'안드로이드 cocos2d 강좌 > cocos2d 안드로이드 클래스 심화' 카테고리의 다른 글
CCEaseExponentialIn / CCEaseExponentialInOut / CCEaseExponentialOut 클래스 분석 (cocos2d for android) (0) | 2011.09.15 |
---|---|
CCEaseElastic 와 상속 클래스 분석 (cocos2d for android) (0) | 2011.09.15 |
CCEaseBounce 와 상속 클래스 분석 (cocos2d for android) (0) | 2011.09.15 |
CCEaseBackIn / CCEaseBackInOut / CCEaseBackOut 클래스 분석 (cocos2d for android) (0) | 2011.09.15 |
CCEaseAction (cocos2d for android) (0) | 2011.09.14 |
CCCameraAction 와 CCOrbitCamera (cocos2d for android) (0) | 2011.09.14 |
CCIntervelAction의 상속 클래스들 분석. (0) | 2011.09.14 |
CCIntervelAction과 CCInstantAction (cocos2d for android) (0) | 2011.09.14 |
CCAction 와 CCFiniteTimeAction (cocos2d for android) (0) | 2011.09.14 |
CCCamera 클래스 분석 (0) | 2011.09.10 |