Paradox Game Engine  v1.0.0 beta06
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
IGenerics.cs
Go to the documentation of this file.
1 // Copyright (c) 2014 Silicon Studio Corp. (http://siliconstudio.co.jp)
2 // This file is distributed under GPL v3. See LICENSE.md for details.
3 using System.Collections.Generic;
4 
5 namespace SiliconStudio.Shaders.Ast
6 {
7  /// <summary>
8  /// An interface used by generic definitions and instance.
9  /// </summary>
10  public interface IGenerics
11  {
12  /// <summary>
13  /// Gets or sets the generic arguments.
14  /// </summary>
15  /// <value>
16  /// The generic arguments.
17  /// </value>
18  List<TypeBase> GenericParameters { get; set; }
19 
20  /// <inheritdoc/>
21  List<TypeBase> GenericArguments { get; set; }
22  }
23 }
An interface used by generic definitions and instance.
Definition: IGenerics.cs:10