Created
December 27, 2015 02:13
-
-
Save st4rdog/e2106ebfde1f7ba93d5d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
using System.Collections; | |
using System.Collections.Generic; | |
public class Rewindable : MonoBehaviour | |
{ | |
[Header("Info")] | |
public List<Vector3> _positions; | |
//============================================ | |
// FUNCTIONS (CUSTOM) | |
//============================================ | |
//============================================ | |
// PROPERTIES | |
//============================================ | |
public List<Vector3> Positions | |
{ | |
get { return _positions; } | |
set { _positions = value; } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment