Advertisement
Guest User

Untitled

a guest
Jan 18th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. using UnityEngine;
  2. using System.Collections;
  3.  
  4. public class SampleAdd
  5. {
  6. public int Add(int x, int y)
  7. {
  8. // 完璧な足し算のはず
  9. return x + y + 1;
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement