campfire/Assets/Scripts/Burnable.cs

9 lines
200 B
C#
Raw Normal View History

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Burnable : MonoBehaviour {
public BurnQuality Quality;
2020-05-01 04:37:20 +02:00
public bool BurningInCampfire = false;
}