New mod: PlayerAvatarHistory

Incremented version for nightly to prevent rollback by auto-updater
Minor fixes
This commit is contained in:
SDraw 2025-07-03 16:15:47 +03:00
parent 7f29079109
commit 9f78aa4620
No known key found for this signature in database
GPG key ID: BB95B4DAB2BB8BB5
23 changed files with 575 additions and 23 deletions

14
ml_pah/AvatarEntry.cs Normal file
View file

@ -0,0 +1,14 @@
using System;
namespace ml_pah
{
[Serializable]
class AvatarEntry
{
public string m_id;
public string m_name;
public string m_imageUrl;
public DateTime m_lastUsageDate;
public bool m_cached = false;
}
}