CapersProject/Assets/02.Scripts/Prop/Tycoon/Data/FireWoodLevel.cs
Nam Tae Gun 04fbc8c7d4 #7 상호작용 가구 추가 중
+ FireWood, Pot, PowerSwitch 가구 추가
+ GameTimeData 추가
2024-07-09 05:06:22 +09:00

15 lines
309 B
C#

using System;
using UnityEngine;
namespace BlueWater.Tycoons
{
[Serializable]
public class FireWoodLevel
{
[field: SerializeField]
public float CookGauge { get; private set; }
[field: SerializeField]
public float BurnInterval { get; private set; }
}
}