-
-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v0.7.0 | feat: Rethrow in prac and much more
- Loading branch information
1 parent
d2556d6
commit 8ec0927
Showing
17 changed files
with
1,124 additions
and
278 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
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,24 @@ | ||
namespace MatchZy; | ||
|
||
class Constants | ||
{ | ||
public static readonly Dictionary<string, string> ProjectileTypeMap = | ||
new(StringComparer.OrdinalIgnoreCase) | ||
{ | ||
{ "smokegrenade_projectile", "smoke" }, | ||
{ "flashbang_projectile", "flash" }, | ||
{ "hegrenade_projectile", "hegrenade" }, | ||
{ "decoy_projectile", "decoy" }, | ||
{ "molotov_projectile", "molotov" } | ||
}; | ||
|
||
public static readonly Dictionary<string, string> NadeProjectileMap = | ||
new(StringComparer.OrdinalIgnoreCase) | ||
{ | ||
{ "smoke", "smokegrenade_projectile" }, | ||
{ "flash", "flashbang_projectile" }, | ||
{ "hegrenade", "hegrenade_projectile" }, | ||
{ "decoy", "decoy_projectile" }, | ||
{ "molotov", "molotov_projectile" } | ||
}; | ||
} |
Oops, something went wrong.