Click here to Skip to main content
15,893,814 members
Articles / Mobile Apps

Bunnyaruga: GAPI, Hekkus, Basics of Deployment

Rate me:
Please Sign up or sign in to vote.
3.63/5 (15 votes)
25 Apr 2004CPOL14 min read 54.1K   247   20  
This article shows an example of a game that uses the GAPI and Hekkus libraries. It also shows a nice and free way of deploying your games/applications without requiring the .NET Framework installed on the end user machines.
namespace Bunnyhug.Bunnyaruga.Sprite
{
	/// <summary>
	/// This is the sprite object used for the fish
	/// </summary>
	public class FishSprite : AnimatedSprite
	{
		#region Variables
		private bool removed;
		private FishTypes fishType;
		public enum FishTypes
		{
			White,
			Blue
		}
		#endregion
			
		#region Properties
		/// <summary>
		/// Property FishType (FishTypes)
		/// </summary>
		public FishTypes FishType
		{
			get
			{
				return this.fishType;
			}
			set
			{
				this.fishType = value;
			}
		}
		/// <summary>
		/// Property Removed (bool)
		/// </summary>
		public bool Removed
		{
			get
			{
				return this.removed;
			}
			set
			{
				this.removed = value;
			}
		}
		#endregion

		#region Constructor
		public FishSprite(FishTypes fishType)
		{
			this.fishType = fishType;
			this.removed = false;
		}
		#endregion
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Canada Canada
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions