Paradox Game Engine
v1.0.0 beta06
Main Page
Related Pages
Packages
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Events
Macros
Pages
ThreadInfo.cs
Go to the documentation of this file.
1
using
System
;
2
using
System.Collections.Generic;
3
using
System.Linq;
4
using
System.Text;
5
6
namespace
SiliconStudio.
Paradox
.DebugTools.DataStructures
7
{
8
public
class
ThreadInfo
9
{
10
public
int
Id {
get
; set; }
11
public
List<MicroThreadInfo> MicroThreadItems {
get
;
private
set; }
12
13
public
ThreadInfo
()
14
{
15
MicroThreadItems =
new
List<MicroThreadInfo>();
16
}
17
18
public
ThreadInfo
Duplicate
()
19
{
20
ThreadInfo
duplicate =
new
ThreadInfo
();
21
22
duplicate.Id = Id;
23
MicroThreadItems.ForEach(item => duplicate.MicroThreadItems.Add(item.Duplicate()));
24
25
return
duplicate;
26
}
27
}
28
}
SiliconStudio.Paradox.DebugTools.DataStructures.ThreadInfo.Duplicate
ThreadInfo Duplicate()
Definition:
ThreadInfo.cs:18
SiliconStudio.Shaders.Parser.System
A system file.
SiliconStudio.Paradox.DebugTools.DataStructures.ThreadInfo
Definition:
ThreadInfo.cs:8
SiliconStudio.Paradox.Graphics.Paradox
Paradox image file.
SiliconStudio.Paradox.DebugTools.DataStructures.ThreadInfo.ThreadInfo
ThreadInfo()
Definition:
ThreadInfo.cs:13
sources
tools
SiliconStudio.Paradox.DebugTools
DataStructures
ThreadInfo.cs
Generated on Sat Dec 20 2014 21:52:17 for Paradox Game Engine by
1.8.7