Advertisement
Guest User

Untitled

a guest
Mar 29th, 2020
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4.  
  5. public class ArrayGenerator : MonoBehaviour
  6. {
  7. public float[] GenerateArray(float[] array, int arrayLen)
  8. {
  9.  
  10. return array;
  11. }
  12. public float[] SortArray(float[] array, int arrayLen)
  13. {
  14.  
  15. return array;
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement