initial commit

This commit is contained in:
Booklordofthedings 2024-05-11 17:10:04 +02:00
commit e204e5538d
25 changed files with 578 additions and 0 deletions

View file

@ -0,0 +1,13 @@
namespace LybLog;
using System;
using System.Collections;
extension LybLog
{
private mixin FlushAndDeleteContainerAndItems(List<String> pContainer)
{
Flush();
DeleteContainerAndItems!(pContainer);
}
}