نوع پروژه مربوط به اين نوع کدها
سلام . مي خواستم بدونم براي تست يه همچين برنامه اي تو ويژوال استوديو ، کدوم پروژه رو انتخاب کنم ؟
[html]
#pragma once
#using <mscorlib.dll>
#using <system.dll>
#using <system.drawing.dll>
#using <system.windows.forms.dll>
using namespace System;
using namespace System::Drawing;
using namespace System::Collections;
using namespace System::Windows::Forms;
public __gc class ChessPiece
{
public:
// define chess-piece type constants
__value enum Types
{
KING,
QUEEN,
BISHOP,
KNIGHT,
ROOK,
PAWN
};
ChessPiece( int, int, int, Bitmap * );
void Draw( Graphics * );
Rectangle GetBounds();
void SetLocation( int , int );
private:
int currentType; // this object's type
Bitmap *pieceImage; // this object's image
Rectangle targetRectangle; // default display location
};
[/html]