로딩
요청 처리 중입니다...

[안드로이드게임]오뚜기 게임

 [안드로이드게임]오뚜기 게임

재생 오른쪽으로 드래그하면 오뚜기가 오른쪽으로, 왼쪽으로 드래그하면 오뚜기가 왼쪽으로, 일정시간 지나면 멈추는 오뚜기. package com.mrgame.odduki; import android.content.Context; import android.graphics.*; import android.os.Handler; import android.view.Display; import android.view.MotionEvent; import android.view.View; import android.view.WindowManager; public class MyView extends View { int Width, Height; int cx, cy; // 중심점 int shw, shh; // shadow의 폭과 길이 int tw, th; // toy의 폭과 길이 int angle = 0; // 오뚜기가 움직이는 각도 in...