I solved the previous problem myself after carefully examining my code. Now I can’t get the print command on the console to show up.
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace RPG.Combat
{
public class Fighter : MonoBehaviour
{
public void Attack(CombatTarget target)
{
print("asdad");
}
}
}
This is also fairly simple?