-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
old game, small icon and description
- Loading branch information
1 parent
5cede7d
commit c5794fc
Showing
5 changed files
with
42 additions
and
2 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
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,18 @@ | ||
using Godot; | ||
|
||
/// <summary> | ||
/// This class provides functionality to open a URL or file. | ||
/// </summary> | ||
public partial class Shell : Node | ||
{ | ||
|
||
[Export] public string Link; | ||
|
||
/// <summary> | ||
/// Opens the specified URL or file. | ||
/// </summary> | ||
private void Activate() | ||
{ | ||
OS.ShellOpen(Link); | ||
} | ||
} |
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