Advertisement
Eresor

Untitled

Oct 26th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.22 KB | None | 0 0
  1. public class ScriptableObjectVariable<T> : ScriptableObject
  2. {
  3.     public T value;
  4. }
  5.  
  6. [CreateAssetMenu(menuName = "Scriptable Object Variables/Float")]
  7. public class FloatVariable : ScriptableObjectVariable<float>
  8. {
  9.    
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement