8 lines
269 B
C#
8 lines
269 B
C#
using UnityEngine;
|
|
|
|
public class PlayerInventory : MonoBehaviour
|
|
{
|
|
[Header("Cấu hình túi đồ")]
|
|
public int treasuresCollected = 0; // Đếm số lượng rương đã nhặt
|
|
public int totalTreasuresNeeded = 3; // Số lượng cần để thắng
|
|
} |