Win screen ANCII Images

ANCII

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class HackerFive : MonoBehaviour
{

    void Stoped(string input)
    {

        switch (input)
        {
            case "1":

                Terminal.WriteLine("You have won Level " + Level + "!!!");
                Terminal.WriteLine(@"
         /\
        /  \
       /____\
       __||__
       ------");

                break;
            case "2":
                Terminal.WriteLine("You have won Level " + Level + "!!!");
                Terminal.WriteLine(@"
    __________
   /         /(
  /         / /
 /_________/ /
(_________( /

");
                break;
             case 3:
                Terminal.WriteLine("You have won Level " + Level + "!!!");
                Terminal.WriteLine(@"
   ===
   | |
  /   \
 /     \
|       |
|       |
|       |
|       |
\_______/");
                break;
        }
    }
}

Privacy & Terms