package org.yasrun.game.kafunwars;
import android.app.Activity;
import android.os.Bundle;
public class KafunWarsActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
final KafunWarsView view = new KafunWarsView(getApplication());
setContentView(view);
view.start();
}
}
最終更新:2011年03月09日 23:18