using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LibXom.Blocks { public class SchmBlock : XomBlock { private int unk0; private int unk1; private int unk2; public int Unk0 { get { return unk0; } } public int Unk1 { get { return unk1; } } public int Unk2 { get { return unk2; } } internal SchmBlock(int unk0, int unk1, int unk2) { this.name = "SCHM"; this.unk0 = unk0; this.unk1 = unk1; this.unk2 = unk2; } } }