mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-28 13:26:53 +00:00
24 lines
323 B
C#
24 lines
323 B
C#
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)
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
}
|