Files
ryujinx/src/Ryujinx.Horizon.Generators/Hipc/CommandInterface.cs

18 lines
513 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 = [];
}
}
}