• 통합검색
  • 대학레포트
  • 논문
  • 기업신용보고서
  • 취업자료
  • 파워포인트배경
  • 서식

전문지식 33건

using System; namespace TextRpg { class Program { static void Main(string[] args) { GameController controller = new GameController(); controller.MainLoop(); } } } 
  • 페이지 22페이지
  • 가격 1,900원
  • 등록일 2021.12.10
  • 파일종류 피피티(ppt)
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
Name: orc HP: 10/10 Name: goblin HP: 8/8 orc(이)가 goblin에게 2의 피해를 줬다. goblin(은)는2의 피해를 입었다. goblin(이)가 orc에게 3의 피해를 줬다. orc(은)는3의 피해를 입었다. Name: orc HP: 7/10 Name: goblin HP: 6/8 
  • 페이지 23페이지
  • 가격 1,900원
  • 등록일 2021.12.10
  • 파일종류 피피티(ppt)
  • 참고문헌 없음
  • 최근 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주 판매 이력 없음
플레이어 상태값이 잘 나오도록 표시 Show Date 표기 몬스터가 0인 상태에서 계속 되는 진행 부분 인스턴스를 새로 만들던지, 초기화해야 해결됩니다. 
  • 페이지 18페이지
  • 가격 1,900원
  • 등록일 2021.12.10
  • 파일종류 피피티(ppt)
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
82번째 줄 배틀 커맨드 부분 전투를 할때 먼저 선공하는 부분 구현 
  • 페이지 20페이지
  • 가격 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주 판매 이력 없음
{ private bool mbExit; private Character mPlayer; private Random mRand; public GameController() { mRand = new Random(); Console.Write("플레이어의 이름을 입력하세요 >>"); //플레이어 이름을 입력하세요
  • 페이지 12페이지
  • 가격 1,900원
  • 등록일 2021.12.10
  • 파일종류 피피티(ppt)
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
namespace TextRpg { class Player : Character // 캐릭터 상속 { private int mMP; //플레이어 마나 private int mMaxMP; //플레이어 최대 마나 private int mLevel; //플레이어 레벨 private int mCurrentExp; //플레이어
  • 페이지 13페이지
  • 가격 1,900원
  • 등록일 2021.12.10
  • 파일종류 피피티(ppt)
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
이전 1 2 3 4 다음
top