Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- void addQuestionEasy(int Id, string Name, Texture image, string Answer1, string Answer2, string Answer3, string Answer4 )
- {
- animeArray.Insert(id, new animeClassEasy() {
- name = Name,
- texture = image,
- answer1 = Answer1,
- answer2 = Answer2,
- answer3 = Answer3,
- answer4 = Answer4
- }
- );
- }
- void Start()
- {
- // 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?
- this.addQuestionEasy(0, "Shittie name", "texture", "k", "k2", "k3", "k4");
- }
Advertisement
Add Comment
Please, Sign In to add comment