Update AtomVariable.cs

This commit is contained in:
Oliver Biwer 2020-02-10 15:25:07 +01:00 committed by GitHub
parent 0916c0ae96
commit 1772b75ec5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -30,7 +30,7 @@ namespace UnityAtoms
/// The inital Variable value as a property.
/// </summary>
/// <returns>Get the Variable's initial value.</returns>
public T InitialValue { get { return _value; } }
public T InitialValue { get { return _initialValue; } }
/// <summary>
/// The value the Variable had before its value got changed last time.