Fix PCKProperties.GetPropertyValue commit function body

This commit is contained in:
miku-666
2022-09-20 18:30:20 +02:00
parent d779e3abdf
commit 88d5804b7f

View File

@@ -24,6 +24,10 @@ namespace PckStudio.Classes.FileTypes
}
public string GetPropertyValue(string property)
{
return GetProperty(property).Item2;
}
public (string, string)[] GetProperties(string property)
{
return FindAll(p => p.property == property).ToArray();