Unity Icon

File

Edit

Assets

GameObjects

Components

Window

Help

Edson Nicolau Ferrão - Unity 6000.3.8f1

|

|

Feel free to reach out to me through any of the social platforms below. I'm always open to new opportunities and connections.

C#ContactService.cs
1
2
3
4
5
6
7
8
9
10
11
12
using UnityEngine;
using System.Collections.Generic;
 
public class ContactService : MonoBehaviour {
private readonly Dictionary<string, string> _socials = new();
 
void Start() {
_socials.Add("email", "nicferrao@gmail.com");
_socials.Add("github", "edsonhunter");
_socials.Add("linkedin", "Edson Nicolau Ferrão");
}
}
Ln 12, Col 1Spaces: 2UTF-8
C#Unity 6