CommandInterface.cs 549 B

1234567891011121314151617
  1. using Microsoft.CodeAnalysis.CSharp.Syntax;
  2. using System.Collections.Generic;
  3. namespace Ryujinx.Horizon.Generators.Hipc
  4. {
  5. class CommandInterface
  6. {
  7. public ClassDeclarationSyntax ClassDeclarationSyntax { get; }
  8. public List<MethodDeclarationSyntax> CommandImplementations { get; }
  9. public CommandInterface(ClassDeclarationSyntax classDeclarationSyntax)
  10. {
  11. ClassDeclarationSyntax = classDeclarationSyntax;
  12. CommandImplementations = new List<MethodDeclarationSyntax>();
  13. }
  14. }
  15. }