personaforge/Program.cs
Tony Bark 1666dd55cd Introduced PersonaProfile
- PersonaProfile is for the exported JSON file
- Renamed a few classes
2025-04-28 09:00:12 -04:00

8 lines
256 B
C#

// .NET 8 C# - Random Sims 2 Personality Allocator
// Clear, minimal, portable, with basic validation.
using PersonaForge;
var traits = PersonalityGen.GenerateRandom();
var profile = PersonaProfile.ToJson(traits, "John Doe");
Console.WriteLine(profile);