Files
KOF/Assets/_KOF/Scripts/Data/TitleInfo.cs
2025-07-02 15:13:26 +08:00

13 lines
248 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using System;
public class SettleInfo
{
public int playerName { get; set; }
public string Title { get; set; } = "颜值";
public int Score { get; set; }
}