mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-07 22:48:36 +00:00
18 lines
549 B
C#
18 lines
549 B
C#
|
using Microsoft.CodeAnalysis.CSharp.Syntax;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace Ryujinx.Horizon.Generators.Hipc
|
|||
|
{
|
|||
|
class CommandInterface
|
|||
|
{
|
|||
|
public ClassDeclarationSyntax ClassDeclarationSyntax { get; }
|
|||
|
public List<MethodDeclarationSyntax> CommandImplementations { get; }
|
|||
|
|
|||
|
public CommandInterface(ClassDeclarationSyntax classDeclarationSyntax)
|
|||
|
{
|
|||
|
ClassDeclarationSyntax = classDeclarationSyntax;
|
|||
|
CommandImplementations = new List<MethodDeclarationSyntax>();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|