Degullmok-client/Assets/Script/Main/ScoreListWrapper.cs
2025-03-21 10:01:45 +09:00

11 lines
268 B
C#

using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Serialization;
[Serializable]
public class ScoreListWrapper
{
public List<ScoreInfo> leaderboardDatas; // 여러 개의 ScoreInfo를 담을 리스트
}