public class GameDeveloper : Human, IDeveloper
{
public string Name { get; } = "Seywan Jahani";
public string Location { get; } = "Mashhad, IR";
public int YearsOfExperience { get; } = 3.5;
public string[] Roles { get; } = new string[]
{
"Mid-Level Game Developer",
"VR Specialist"
};
public string CurrentFocus { get; } = "Building next-gen VR experiences";
public Dictionary<string, string[]> Expertise => new()
{
["Languages"] = new[] { "C#", "C++", "TypeScript", "Python" },
["Engines"] = new[] { "Unity", "Unreal Engine 5", "CocosCreator" },
["VR/AR"] = new[] { "Meta Quest", "WebGL" },
["Specializations"] = new[] { "Physics Systems", "AI", "Multiplayer" }
};
public void GetMotivation() => Console.WriteLine("Creating worlds people escape into! ๐");
}<
"The best games are created when passionate developers come together."
๐ผ Open for: Game Dev Collaborations โข VR Projects โข Consulting โข Speaking Engagements
๐ง Email: seyvanjahani@gmail.com | ๐ Portfolio: seywanjahani.dev
```