Hey I was wondering why can I use a function with no return value "void". But if I make a function that has same name as the script name I can make a function can anyone please clarify this?
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Parameters  {
    public Parameters()
    {
//why am I able to make this function
    }
}
 
     
    