mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-08-12 05:05:26 +02:00
Move solution and projects to src
This commit is contained in:
17
src/Ryujinx.Horizon.Generators/Hipc/CommandInterface.cs
Normal file
17
src/Ryujinx.Horizon.Generators/Hipc/CommandInterface.cs
Normal file
@@ -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>();
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user