mirror of
https://github.com/hanetzer/sdraw_mods_cvr.git
synced 2025-09-05 03:19:23 +00:00
New mod: PlayerAvatarHistory
Incremented version for nightly to prevent rollback by auto-updater Minor fixes
This commit is contained in:
parent
7f29079109
commit
9f78aa4620
23 changed files with 575 additions and 23 deletions
14
ml_pah/AvatarEntry.cs
Normal file
14
ml_pah/AvatarEntry.cs
Normal 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;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue