luness
❔ Error message when trying to move direction for my tiles in a N-puzzle
thank you man! I appreciate the help, not many people help me that good. Btw a quick question, if I dont want it to keep printing out the board everytime i move the tile, can I use console.clear();
44 replies
❔ Error message when trying to move direction for my tiles in a N-puzzle
btw I had this class to but idk if you needed it using System;
namespace N_Puzzle
{
public class Tile
{
public int value { get; set; }
public string Color { get; set; }
public Tile(int v) { value = v+1 ;
} } }
public Tile(int v) { value = v+1 ;
} } }
44 replies