Initial commit

This commit is contained in:
PhoenixARC
2021-01-30 13:19:58 -05:00
commit e90d7f9414
272 changed files with 112937 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace minekampf.Classes
{
public class COL
{
public COL(byte[] data)
{
Read(data);
}
public void Read(byte[] data)
{
}
}
}