Swapped old code (was an AI-generated template, anyway) for the new PersonalityGen-based one.
7 lines
209 B
C#
7 lines
209 B
C#
// .NET 8 C# - Random Sims 2 Personality Allocator
|
|
// Clear, minimal, portable, with basic validation.
|
|
|
|
using PersonaForge;
|
|
|
|
var profile = PersonalityGen.GenerateRandom();
|
|
Console.WriteLine(profile.ToJson());
|