1
0
mirror of https://github.com/cwchristerw/jump-game synced 2024-09-19 16:59:34 +00:00
jump-game/Jump Game/Assets/Scripts/InteractionObject.cs
2020-04-10 08:45:04 +03:00

16 lines
254 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class InteractionObject : MonoBehaviour
{
public bool talks;
public string message;
public void Talk()
{
Debug.Log(message);
}
}