ryujinx/src/Ryujinx.Horizon.Generators/Hipc/CommandInterface.cs
TSRBerry 2989c163a8
editorconfig: Set default encoding to UTF-8 (#5793)
* editorconfig: Add default charset

* Change file encoding from UTF-8-BOM to UTF-8
2023-12-04 14:17:13 +01:00

17 lines
546 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>();
}
}
}