all repos — RPG @ 5b0cc0399bcc80945ec61003fc36c07273007cad

Fully functional 3D turn based role playing game coded in C# and base Unity.

Assets/Scripts/Overworld/Dialogue/Boss.cs (view raw)

 1using System.Collections;
 2using System.Collections.Generic;
 3using UnityEngine;
 4
 5public class Boss : MonoBehaviour
 6{
 7    // Start is called before the first frame update
 8    void Start()
 9    {
10        
11    }
12
13    // Update is called once per frame
14    void Update()
15    {
16        
17    }
18}