using System; using NetMFAPatcher.MMFParser.Data; using NetMFAPatcher.Utils; namespace NetMFAPatcher.MMFParser.ChunkLoaders.Events.Expressions { class Expression : DataLoader { public Constants.ObjectType ObjectType; public int Num; public int ObjectInfo; public int ObjectInfoList; public Expression(ByteIO reader) : base(reader) { } public override void Print() { throw new NotImplementedException(); } public override void Read() { } } }