Advertisement
Guest User

Untitled

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