2022-12-02 11:16:01 +01:00
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
[System.Serializable]
|
|
|
|
|
public class Player {
|
2022-12-02 13:03:49 +01:00
|
|
|
public int player_id;
|
|
|
|
|
public string player_name;
|
2022-12-02 13:23:54 +01:00
|
|
|
public Date joindate;
|
|
|
|
|
public string player_join_date;
|
|
|
|
|
|
|
|
|
|
public void ConvertDate() { //mindig meg kell hivni
|
|
|
|
|
joindate = new Date(player_join_date);
|
|
|
|
|
}
|
2022-12-02 11:16:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|