summaryrefslogtreecommitdiff
path: root/Assets/Art/Vfx/GrabSquaresEffect/Scripts/Point.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Assets/Art/Vfx/GrabSquaresEffect/Scripts/Point.cs')
-rw-r--r--Assets/Art/Vfx/GrabSquaresEffect/Scripts/Point.cs21
1 files changed, 0 insertions, 21 deletions
diff --git a/Assets/Art/Vfx/GrabSquaresEffect/Scripts/Point.cs b/Assets/Art/Vfx/GrabSquaresEffect/Scripts/Point.cs
deleted file mode 100644
index b3932cc6..00000000
--- a/Assets/Art/Vfx/GrabSquaresEffect/Scripts/Point.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-using UnityEngine;
-
-namespace Assets.MoveableLineRenderer.Scripts
-{
- internal sealed class Point
- {
- public Vector3 Position;
- private readonly float _timeCreated;
-
- public Point(Vector3 position)
- {
- Position = position;
- _timeCreated = Time.time;
- }
-
- public float TimeAlive
- {
- get { return Time.time - _timeCreated; }
- }
- }
-} \ No newline at end of file