From 6fc09af51204ed1b2945c0356230e810f0bfa235 Mon Sep 17 00:00:00 2001 From: Jessica Petty Date: Mon, 23 Nov 2020 13:36:40 -0700 Subject: [PATCH 1/4] Update richnav-csharp.yml --- .github/workflows/richnav-csharp.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }} From af4ce73a98c496941cb57867bfc34fc466361a09 Mon Sep 17 00:00:00 2001 From: Jessica Petty Date: Mon, 23 Nov 2020 14:07:07 -0700 Subject: [PATCH 2/4] Update Drawable.cs --- csharp/src/Drawable.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/csharp/src/Drawable.cs b/csharp/src/Drawable.cs index 695bb83..fea6b0a 100644 --- a/csharp/src/Drawable.cs +++ b/csharp/src/Drawable.cs @@ -2,6 +2,7 @@ namespace game { interface Drawable { + // hi void draw(); } -} \ No newline at end of file +} From be13dd4bc4fbc098704bc18ee825f7f995a48074 Mon Sep 17 00:00:00 2001 From: Jessica Petty Date: Mon, 23 Nov 2020 14:19:49 -0700 Subject: [PATCH 3/4] Update Block.cs --- csharp/src/Block.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 +} From 09fb7e56354238eef642a0b1ecafd911d90c0cfe Mon Sep 17 00:00:00 2001 From: Jessica Petty Date: Mon, 23 Nov 2020 14:31:12 -0700 Subject: [PATCH 4/4] Update Drawable.cs --- csharp/src/Drawable.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/src/Drawable.cs b/csharp/src/Drawable.cs index fea6b0a..ad3353e 100644 --- a/csharp/src/Drawable.cs +++ b/csharp/src/Drawable.cs @@ -2,7 +2,7 @@ namespace game { interface Drawable { - // hi + // hi - you rock void draw(); } }