13 lines
248 B
C#
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; }
|
|
}
|