diff options
Diffstat (limited to 'Ryujinx.Horizon.Generators/Hipc/CommandInterface.cs')
-rw-r--r-- | Ryujinx.Horizon.Generators/Hipc/CommandInterface.cs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Ryujinx.Horizon.Generators/Hipc/CommandInterface.cs b/Ryujinx.Horizon.Generators/Hipc/CommandInterface.cs new file mode 100644 index 00000000..2ee19282 --- /dev/null +++ b/Ryujinx.Horizon.Generators/Hipc/CommandInterface.cs @@ -0,0 +1,17 @@ +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>(); + } + } +} |