Back to project page Open-Android-Game.
The source code is released under:
GNU General Public License
If you think the Android project Open-Android-Game listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* WorldEnt.java - Abstract class for holding dynamic entities * // www.j ava 2 s. c om * Copyright 2011 Open-Android-Game Group * Please see the file COPYING in this * distribution for license terms. */ package com.kylepaulsen.openAndroidGame; import android.graphics.Bitmap; import android.graphics.Canvas; import android.graphics.Rect; public abstract class WorldEnt { //i dont know what goes in here yet. /* protected Bitmap bitmap; public WorldEnt(Bitmap bitmap){ this.bitmap = bitmap; } */ public void draw(Canvas canvas, Rect rect){ } }