Advertisement
Guest User

Untitled

a guest
Nov 28th, 2014
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. public class MYCLASSNAME : MonoBehaviour {
  2.  
  3. string myString;
  4. int myInt;
  5. void Start (){
  6. for(int i= 0; i < myInt; i++) {
  7. TulostaTeksti(myString);
  8. }
  9. }
  10.  
  11. void TulostaTeksti ( string _myString ){
  12. print(_myString);
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement