diff --git a/.github/workflows/richnav-csharp.yml b/.github/workflows/richnav-csharp.yml index c384103..65e584b 100644 --- a/.github/workflows/richnav-csharp.yml +++ b/.github/workflows/richnav-csharp.yml @@ -28,7 +28,7 @@ jobs: run: dotnet restore working-directory: ./csharp - - uses: microsoft/RichCodeNavIndexer@v0.1 + - uses: jepetty/RichCodeNavIndexer@testCSharpInstall with: languages: csharp repo-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/csharp/src/Block.cs b/csharp/src/Block.cs index 42ebf2e..18f39fd 100644 --- a/csharp/src/Block.cs +++ b/csharp/src/Block.cs @@ -6,9 +6,10 @@ class Block: GameObject { public Block(int x, int y): base(x, y){} + // this interacts public new void interact() { Console.WriteLine("You get a coin!"); } } -} \ No newline at end of file +} diff --git a/csharp/src/Drawable.cs b/csharp/src/Drawable.cs index 695bb83..ad3353e 100644 --- a/csharp/src/Drawable.cs +++ b/csharp/src/Drawable.cs @@ -2,6 +2,7 @@ namespace game { interface Drawable { + // hi - you rock void draw(); } -} \ No newline at end of file +}