Guest User

Untitled

a guest
May 8th, 2015
20
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.59 KB | None | 0 0
  1.     void addQuestionEasy(int Id, string Name, Texture image, string Answer1, string Answer2, string Answer3, string Answer4 )
  2.     {
  3.        
  4.         animeArray.Insert(id, new animeClassEasy() {
  5.         name = Name,
  6.         texture = image,
  7.         answer1 = Answer1,
  8.         answer2 = Answer2,
  9.         answer3 = Answer3,
  10.         answer4 = Answer4
  11.         }
  12.        
  13.         ); 
  14.        
  15.     }
  16.  
  17.     void Start()
  18.     {
  19.         // Lets say I have a texture I need as the third argument named "picture" under "textures/easy/" would I just use "textures/easy/picture.png" as third argument then?
  20.         this.addQuestionEasy(0, "Shittie name", "texture", "k", "k2", "k3", "k4");
  21.     }
Advertisement
Add Comment
Please, Sign In to add comment