﻿#region Header

// Copyright (c) 2021-2022 AccelByte Inc. All Rights Reserved.
// This is licensed software from AccelByte Inc, for limitations
// and restrictions contact your company contract manager.

#endregion

namespace BlackBox.Utils
{
    public interface IStats
    {
        void  Capture();
        float GetCpuTime();
        float GetGpuTime();
    }
}
