mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-08-11 12:47:51 +02:00
18 lines
513 B
C#
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 = [];
|
|
}
|
|
}
|
|
}
|