sasalka/Code/UI/ChatHistory.cs
2025-06-08 23:43:22 +03:00

14 lines
305 B
C#

using System.Collections.Generic;
namespace Sandbox;
public static class ChatHistory
{
public static List<Chat.Entry> Entries { get; private set; } = new();
public static void Add(ulong steamid, string author, string message)
{
Entries.Add(new Chat.Entry(steamid, author, message, 0.0f));
}
}