Use common library in Love

This commit is contained in:
Andrew Cooper
2022-03-18 07:33:28 +11:00
parent 1a8ea5aabd
commit d6ddc6bf9e
8 changed files with 116 additions and 127 deletions

View File

@@ -0,0 +1,16 @@
using System.Text;
namespace Love;
internal static class StringBuilderExtensions
{
internal static StringBuilder AppendLines(this StringBuilder builder, int count)
{
for (int i = 0; i < count; i++)
{
builder.AppendLine();
}
return builder;
}
}