personaforge/Program.cs
Tony Bark eeb30cf67d Personality Archetypes
Swapped old code (was an AI-generated template, anyway) for the new PersonalityGen-based one.
2025-04-28 05:58:37 -04:00

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());