Skip to content

Commit

Permalink
update gen code
Browse files Browse the repository at this point in the history
  • Loading branch information
SridharaQweebi committed Dec 17, 2024
1 parent b2902ea commit 1629cc3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions libs/core/_locales/core-strings.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
"turtle.onBump|block": "on bump",
"turtle.turn|block": "turn %direction|by %angle degrees",
"turtle|block": "turtle",
"unity.helloUnityNamespace|block": "helloUnity namespace",
"{id:category}Array": "Array",
"{id:category}Arrays": "Arrays",
"{id:category}Boolean": "Boolean",
Expand All @@ -67,6 +68,7 @@
"{id:category}String": "String",
"{id:category}Text": "Text",
"{id:category}Turtle": "Turtle",
"{id:category}Unity": "Unity",
"{id:group}Modify": "Modify",
"{id:group}Operations": "Operations",
"{id:group}Read": "Read"
Expand Down
6 changes: 6 additions & 0 deletions libs/core/sims.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ declare namespace hare {
//% shim=hare::onLand
function onLand(handler: (height: number, more: number, most: number) => void): void;

}
declare namespace unity {
//% blockId=helloUnityNamespace block="helloUnity namespace"
//% shim=unity::helloUnityNamespace
function helloUnityNamespace(): void;

}
declare namespace turtle {
/**
Expand Down

0 comments on commit 1629cc3

Please sign in to comment.