!B (Sandbox) (CE-21795) Importing models with multisubmaterials via fbx switches...
[CRYENGINE.git] / Code / Tools / Statoscope / Statoscope / ILogDataStream.cs
blob95890a9f57e5abb4596e75fa93f6f1bce24ca064
1 // Copyright 2001-2019 Crytek GmbH / Crytek Group. All rights reserved.
3 using System;
5 namespace Statoscope
7 interface ILogDataStream : IDisposable
9 int Peek();
10 string ReadLine();
11 bool IsEndOfStream { get; }