SMART FACTORY - Game 만들기 2


SMART FACTORY - Game 만들기 2

using System; using System.Drawing; using System.Windows.Forms; namespace WindowsFormsApp1 { public partial class Form1 : Form { const int WtileSize = 16; const int HtileSize = 9; //하드 코딩이 될 수 밖에 없음! const string Title = " 볼드모트와 아츠카반의 죄수"; int Stage; char[][] MapReal; string[,] Map = { {"################", "#@ #", "### ### #", "# ## #", "# ## ##", "# ## #", "# # B . #", "# B. #", "##############..


원문링크 : SMART FACTORY - Game 만들기 2