摘要: 1 using System; 2 using System.Drawing; 3 using System.Windows.Forms; 4 5 internal class tetris : Form 6 { 7 private static void Main() 8 { 9 Application.EnableVisualStyles(); 10 Application.Run(new tetris()); 11 } 12 13 private const int dimension = 8; 14... 阅读全文
posted @ 2013-08-24 13:55 サニーミルク 阅读(271) 评论(0) 推荐(0) 编辑