forked from MonoGame/MonoGame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ContentStats.cs
49 lines (41 loc) · 1.27 KB
/
ContentStats.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// MonoGame - Copyright (C) The MonoGame Team
// This file is subject to the terms and conditions defined in
// file 'LICENSE.txt', which is part of this source code package.
using System;
namespace Microsoft.Xna.Framework.Content.Pipeline
{
/// <summary>
/// Content building statistics for a single source content file.
/// </summary>
public struct ContentStats
{
/// <summary>
/// The absolute path to the source content file.
/// </summary>
public string SourceFile;
/// <summary>
/// The absolute path to the destination content file.
/// </summary>
public string DestFile;
/// <summary>
/// The content processor type name.
/// </summary>
public string ProcessorType;
/// <summary>
/// The content type name.
/// </summary>
public string ContentType;
/// <summary>
/// The source file size in bytes.
/// </summary>
public long SourceFileSize;
/// <summary>
/// The destination file size in bytes.
/// </summary>
public long DestFileSize;
/// <summary>
/// The content build time in seconds.
/// </summary>
public float BuildSeconds;
}
}