-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: OnDrawMethod for dynamic values
- Loading branch information
Showing
4 changed files
with
165 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,7 +57,7 @@ jobs: | |
- name: Extract version and create tag | ||
id: extract_version | ||
run: | | ||
version="1.0.0" | ||
version="1.0.1" | ||
echo "Version found: $version" | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "GitHub Actions" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
using CounterStrikeSharp.API.Core; | ||
|
||
namespace Menu; | ||
|
||
public interface IMenuEvent | ||
{ | ||
|
||
} | ||
|
||
public class MenuEvent(CCSPlayerController controller, MenuBase menu, MenuItem? selectedItem) : IMenuEvent | ||
{ | ||
public CCSPlayerController Controller { get; set; } = controller; | ||
public MenuBase Menu { get; set; } = menu; | ||
public MenuItem? SelectedItem { get; set; } = selectedItem; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters