예제 #1
0
        static void Main(string[] args)
        {
            _SetUpTerminal();

            var template = new AsciiArtTemplate();
            var asciiArt = new AsciiArt(template);

            asciiArt.Show("IT Rangsit University");
            Console.ReadLine();
        }
예제 #2
0
 public AsciiArt(AsciiArtTemplate template)
 {
     _currentTemplate = template;
 }