Skip to content

Commit

Permalink
Update Version 0.11 Alfa
Browse files Browse the repository at this point in the history
  • Loading branch information
Vytek committed May 19, 2021
1 parent 8310fd4 commit 4d1508f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
4 changes: 4 additions & 0 deletions Assets/AlgorandUnitySDK/Documentations/version.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2021-05-19T11:25:11+0200

Version 0.11 Alfa

10.10 16/05/2021

Version 0.9 Alfa
Expand Down
8 changes: 6 additions & 2 deletions Assets/AlgorandUnitySDK/Scripts/AlgorandManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class AlgorandManager : Singleton<AlgorandManager>
{
[SerializeField]
protected string m_PlayerName;
protected string _Version = "0.10 Alfa";
protected string _Version = "0.11 Alfa";
protected Account _AMAccount = null;
private const string _InternalPassword = "0sIhlNRkMfDH8J9cC0Ky";

Expand Down Expand Up @@ -46,6 +46,11 @@ public string Version()
{
return _Version;
}

/// <summary>
/// Get Actual Player Name
/// </summary>
/// <returns>Player Name</returns>
public string GetPlayerName()
{
return m_PlayerName;
Expand All @@ -55,7 +60,6 @@ protected virtual void OnApplicationQuit()
Debug.Log("Algorand Manager stopped.");

}

//Publics Methods

/// <summary>
Expand Down

0 comments on commit 4d1508f

Please sign in to comment.