File tree Expand file tree Collapse file tree 4 files changed +4
-0
lines changed Expand file tree Collapse file tree 4 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ namespace vcryptpp::VICE {
1313namespace KnownCodes {
1414
1515constexpr std::string_view DEFAULT = " x9Ke0BY7" ;
16+ constexpr std::string_view BLOODY_GOOD_TIME = " K4PeJwL7" ;
1617constexpr std::string_view CONTAGION_WEAPONS = " fUk0fF69" ;
1718constexpr std::string_view CONTAGION_SCRIPTS = " 5!rrFz6p" ;
1819constexpr std::string_view COUNTER_STRIKE_SOURCE = " d7NSuLq2" ;
Original file line number Diff line number Diff line change 44
55#define VCRYPTPP_VICE_KNOWN_CODES_DEFAULT "x9Ke0BY7";
66
7+ #define VCRYPTPP_VICE_BLOODY_GOOD_TIME "K4PeJwL7"
78#define VCRYPTPP_VICE_KNOWN_CODES_CONTAGION_WEAPONS "fUk0fF69"
89#define VCRYPTPP_VICE_KNOWN_CODES_CONTAGION_SCRIPTS "5!rrFz6p"
910#define VCRYPTPP_VICE_KNOWN_CODES_COUNTER_STRIKE_SOURCE "d7NSuLq2"
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ internal static unsafe partial class Extern
1717 public static class KnownCodes {
1818 public const string DEFAULT = "x9Ke0BY7" ;
1919
20+ public const string BLOODY_GOOD_TIME = "K4PeJwL7" ;
2021 public const string CONTAGION_WEAPONS = "fUk0fF69" ;
2122 public const string CONTAGION_SCRIPTS = "5!rrFz6p" ;
2223 public const string COUNTER_STRIKE_SOURCE = "d7NSuLq2" ;
Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ inline void register_python(py::module_& m) {
3636 using namespace KnownCodes ;
3737
3838 KnownCodes.attr (" DEFAULT" ) = DEFAULT;
39+ KnownCodes.attr (" BLOODY_GOOD_TIME" ) = BLOODY_GOOD_TIME;
3940 KnownCodes.attr (" CONTAGION_WEAPONS" ) = CONTAGION_WEAPONS;
4041 KnownCodes.attr (" CONTAGION_SCRIPTS" ) = CONTAGION_SCRIPTS;
4142 KnownCodes.attr (" COUNTER_STRIKE_SOURCE" ) = COUNTER_STRIKE_SOURCE;
You can’t perform that action at this time.
0 commit comments