Click here to Skip to main content
15,886,258 members
Articles / Desktop Programming / Windows Forms

EmuEngine

Rate me:
Please Sign up or sign in to vote.
3.51/5 (12 votes)
4 Dec 20061 min read 62.5K   610   27  
With the EmuEngine, you can create simple 2D games in C#.
using System;
using System.Collections.Generic;
using System.Text;
using System.Drawing;

namespace EmuEngine
{
  public class PictureWall
  {
    Image image;

    Point position;

    int width;
    int height;


    public PictureWall(String filename, int x, int y, int width, int height)
    {
      image = Image.FromFile(filename);
      this.position = new Point(x, y);
      this.width = width;
      this.height = height;
    }

    public Image Image
    {
      get { return image; }
      set { image = value; }
    }

    public Point Position
    {
      get { return position; }
      set { position = value; }
    }

    public int Width
    {
      get { return width; }
    }

    public int Height
    {
      get { return height; }
    }
  }
}

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 has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Germany Germany
-School
-Apprenticeship Software Developer first year
-Coding for 1 year Smile | :) .

Comments and Discussions