mirror of
https://github.com/sp-tarkov/patcher.git
synced 2025-02-13 09:10:46 -05:00
17 lines
431 B
C#
17 lines
431 B
C#
|
using Avalonia.Media;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace PatchGenerator.Helpers
|
|||
|
{
|
|||
|
public static class PatchItemDefinitions
|
|||
|
{
|
|||
|
public static Dictionary<string, IBrush> Colors = new Dictionary<string, IBrush>()
|
|||
|
{
|
|||
|
{"delta", Brushes.MediumPurple },
|
|||
|
{"new", Brushes.Green },
|
|||
|
{"del", Brushes.IndianRed },
|
|||
|
{"exists", Brushes.DimGray }
|
|||
|
};
|
|||
|
}
|
|||
|
}
|