Projektdateien hinzufügen.

This commit is contained in:
2022-11-04 17:57:03 +01:00
parent d1f29939f6
commit 4741d8c437
38 changed files with 1776 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
using Dalamud.Game.Text.SeStringHandling;
using Pilz.Dalamud.Tools.Strings;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Pilz.Dalamud.Nameplates.Tools
{
public static class NameplateUpdateFactory
{
public static void ApplyNameplateChanges(NameplateChangesProps props)
{
foreach (NameplateElements element in Enum.GetValues(typeof(NameplateElements)))
{
var change = props.Changes.GetProps(element);
StringUpdateFactory.ApplyStringChanges(change);
}
}
}
}