using System;
using Unity;
using UnityEngine;
public class UnityCodingPractice : MonoBehaviour
{
int number = 1;
void Awake()
Debug.Log("Inside Awake" + number);
}
// Start is called before the first frame update
void Start()
Debug.Log("Inside Start" + number);
// Update is called once per frame
void Update()
void Main()
Awake();
Start();
Update();