Advertisement
MaZy

ScenenlistSerializeable.cs

Nov 28th, 2015
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.33 KB | None | 0 0
  1. using System.Collections.Generic;
  2. using System.IO;
  3. using System.Linq;
  4. using UnityEditor;
  5. using UnityEngine;
  6.  
  7.  
  8. // For load an save
  9. [System.Serializable]
  10. public class ScenenlistSerializeable : ScriptableObject
  11. {
  12.     [SerializeField]
  13.     public int QuickSwitch1ID = 0;
  14.     [SerializeField]
  15.     public int QuickSwitch2ID = 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement