Click here to Skip to main content
15,897,187 members
Articles / Mobile Apps

Color Invasion for the PocketPC or .NET

Rate me:
Please Sign up or sign in to vote.
3.83/5 (16 votes)
28 May 2004CPOL6 min read 53.1K   304   25  
This is my submission for the .NET CF contest for May 2004. It is a game utilizing the .NET Compact Framework for the PocketPC that demonstrates the ease and power or .NET CF. The game allows singleplayer mode against the computer, or Multiplayer over a network or Internet connection.
//------------------------------------------------------------------------------
// <autogenerated>
//     This code was generated by a tool.
//     Runtime Version: 1.1.4322.573
//
//     Changes to this file may cause incorrect behavior and will be lost if 
//     the code is regenerated.
// </autogenerated>
//------------------------------------------------------------------------------

namespace ColorInvasion {
	using System;
	using System.Drawing;
	
	
	/// <summary>
	/// TODO - Add class summary
	/// </summary>
	/// <remarks>
	/// 	created by - James
	/// 	created on - 5/24/2004 9:12:08 AM
	/// </remarks>
	public class Position2 : object {
		
		/// <summary>
		/// Default constructor - initializes all fields to default values
		/// </summary>
		public Position2() {
		}
		
		public Point[] m_Points = new Point[4];
		public Position2(Point p1, Point p2, Point p3, Point p4){
			m_Points[0] = p1;
			m_Points[1] = p2;
			m_Points[2] = p3;
			m_Points[3] = p4;
		}

	}
}

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
Software Developer (Senior) Philips
United States United States
I'm a senior software engineer at Philips. I work on Precision Diagnostics software.

Comments and Discussions