mycj_demo/mycj/Assets/Game/Scripts/Application/Data/FBCard.cs

33 lines
806 B
C#
Raw Normal View History

2024-12-02 09:37:47 +08:00
// Felix-BangFBCard
//   へ     /|
//  /7    ∠_/
//  / │    
//  Z _,    /`ヽ
// │     ヽ   /  〉
//  Y     `  /  /
// イ● 、 ●  ⊂⊃〈  /
// ()  へ    | \〈
//  >ー 、_  ィ  │
//  / へ   / ノ<|
//  ヽ_ノ  (_  │//
//  7       |
//  ―r ̄ ̄`ー―_
// Describe关卡选择界面关卡缩略图数据
// Createtime
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace FBApplication
{
public class FBCard
{
public int LevelID;
public string CardImage;
public bool IsLocked;
}
}