8 lines
256 B
C#
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);
|