Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4.  
  5. public class Test : MonoBehaviour {
  6.  
  7. // Use this for initialization
  8. void Start () {
  9.  
  10. var myString =
  11. " *\n" +
  12. " ***\n" +
  13. " *****\n" +
  14. " *******\n" +
  15. " *********\n" +
  16. " *******\n" +
  17. " *****\n" +
  18. " ***\n" +
  19. " *";
  20.  
  21. print (myString);
  22. }
  23.  
  24. // Update is called once per frame
  25. void Update () {
  26.  
  27. }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement