How to create a Chess Game | Game Development in vb.net | Programming
Chess,one of the most recognized board game in the world.You probably have played it once or seen it once in your lifetime.How cool it would be if we can create our own chess game. Here is the code,you can use to as reference for creating your own or you can just just clone it from Github and improve My version of Chess. Download the code : Github : VB_Chess (Visual Studio 2010) King.vb Public Class king Public x_pos, y_pos As Integer Public piece_val As Integer Public flags(7, 7) As Boolean Public check_the_king(7, 7) As Boolean Public Sub New(ByVal x, ByVal y, ByVal p_val) 'color=+ve val if white color=-ve if black x_pos = x y_pos = y piece_val = p_val re_flags() End Sub Public Function ret_x() As Integer Return x_pos End Function Public Function ret_y() As Integer Return y_pos End Function Public Function ret_val() As Integer Return piece
Comments
Post a Comment