player convert date working

This commit is contained in:
2022-12-02 13:23:54 +01:00
parent 17f1900ed3
commit 5c1ae8a2e0
4 changed files with 25 additions and 11 deletions

View File

@@ -6,7 +6,12 @@ using UnityEngine;
public class Player {
public int player_id;
public string player_name;
public string player_join_date;
public Date joindate;
public string player_join_date;
public void ConvertDate() { //mindig meg kell hivni
joindate = new Date(player_join_date);
}
}