using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace mmoRL { public class Image { public string character = " "; public ConsoleColor color = ConsoleColor.Gray; public Image(string character, ConsoleColor color = ConsoleColor.Gray) { this.character = character; this.color = color; } public bool IsSame(Image graphic) { if (this.character == graphic.character && this.color == graphic.color) return true; else return false; } } }