Advertisement
Berenger

ClassHolder.cs

Dec 6th, 2012
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.28 KB | None | 0 0
  1. using UnityEngine;
  2. using System.Collections.Generic;
  3.  
  4. // The only purpose of that class is to save and load the list as an asset
  5. public class ClassHolder : ScriptableObject
  6. {
  7.     public List< ClassA > list;
  8.     public ClassHolder(List< ClassA > L)
  9.     {
  10.         list = L;
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement