|
1.resx
GameClass.cs
Program.cs
Blackjack.sln
Blackjack.suo
BlackJack.uml
파일 77, 폴더 9
473KB
BlackJack Game.docx……………………………………3p
1. 개발환경
2. 내용
3. 게임 화면
4. Class 설명
5. Diagram
6. C# Source 파일
|
- 페이지 80페이지
- 가격 3,000원
- 등록일 2014.03.19
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
{
tabpass();
tabControl1.TabPages.Clear();
tabControl1.TabPages.Add(tabPage2); //회원가입 페이지 이동
} ppt 파일에 1. E.R.D 2. 상세 기능 설명서 3. 주요화면 덤프 작성.
DB쿼리 C#소스 는 폴더 안에 있습니다.
|
- 페이지 50페이지
- 가격 5,000원
- 등록일 2009.06.19
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
C# 폼프로그래밍 텀프로젝트
// 공피하기 게임
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Reflection;
using System.Media;
namespace termproject
{
|
- 페이지 544페이지
- 가격 1,000원
- 등록일 2013.12.07
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
using System;
using System.Collections.Generic;
using System.Text;
namespace TextRpg
{
//캐릭터를 상속받습니다.
class Monster : Character
{
private int mContainGold;
private int mGivingExp;
private BattleController mController;
public Monst
|
- 페이지 30페이지
- 가격 1,900원
- 등록일 2021.12.10
- 파일종류 피피티(ppt)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
using System;
using System.Collections.Generic;
using System.Text;
namespace TextRpg
{
public enum eItemType
{
Heal,
Attack
}
class Item
{
public string Name;
public string Info;
public int Cost;
public int Value;
|
- 페이지 28페이지
- 가격 1,900원
- 등록일 2021.12.10
- 파일종류 피피티(ppt)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
using System;
using System.Collections.Generic;
using System.Text;
namespace TextRpg
{
class BattleController
{
private Random mRand;
private int mGold;
private int mExp;
public BattleController()
{
mRand = new Random();
|
- 페이지 19페이지
- 가격 1,900원
- 등록일 2021.12.10
- 파일종류 피피티(ppt)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
using System;
using System.Collections.Generic;
using System.Text;
namespace TextRpg
{
enum eShopCommand //상점 열거형
{
Buy = 1,
Sell,
Exit
}
class ShopController
{
Item[] mOriginalItemArr;
string[] mLocalizationTypeName;
|
- 페이지 16페이지
- 가격 1,900원
- 등록일 2021.12.10
- 파일종류 피피티(ppt)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
using System;
using System.Collections.Generic;
using System.Text;
namespace TextRpg
{
class Player : Character // 캐릭터 상속
{
private int mMP; //플레이어 마나
private int mMaxMP; //플레이어 최대 마나
private int mLevel; //
|
- 페이지 12페이지
- 가격 1,900원
- 등록일 2021.12.10
- 파일종류 피피티(ppt)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
using System;
using System.Collections.Generic;
using System.Text;
namespace TextRpg
{
class Player : Character // 캐릭터 상속
{
private int mMP; //플레이어 마나
private int mMaxMP; //플레이어 최대 마나
private int mLevel; //
|
- 페이지 11페이지
- 가격 1,900원
- 등록일 2021.12.10
- 파일종류 피피티(ppt)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
using System;
using System.Collections.Generic;
using System.Text;
namespace Lotto
{
class Lotto
{
static void Main(string[] args)
{
int[] num = new int[6];
num = RandomNumber.RandomNum();
string str;
bool iteratio
|
- 페이지 3페이지
- 가격 1,000원
- 등록일 2007.06.25
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|