public GGPackWriter(BinaryWriter bw) { _bw = bw; _offset = 8; _gFiles = new GGArray(); _bw.Write(0); _bw.Write(0); }
public bool Equals(GGArray other) { if (_items.Count != other._items.Count) { return(false); } for (int i = 0; i < _items.Count; i++) { if (!Equals(_items[i], other._items[i])) { return(false); } } return(true); }