:D
This commit is contained in:
commit
09ade10207
117 changed files with 2153 additions and 0 deletions
4
eastern flames/scripts/gcd/gcd.gml
Normal file
4
eastern flames/scripts/gcd/gcd.gml
Normal file
|
@ -0,0 +1,4 @@
|
|||
function gcd(a, b) {
|
||||
//https://stackoverflow.com/questions/21570890/java-get-greatest-common-divisor-which-method-is-better
|
||||
return b==0 ? a : gcd(b, a%b);
|
||||
}
|
12
eastern flames/scripts/gcd/gcd.yy
Normal file
12
eastern flames/scripts/gcd/gcd.yy
Normal file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"isDnD": false,
|
||||
"isCompatibility": false,
|
||||
"parent": {
|
||||
"name": "convenience",
|
||||
"path": "folders/Scripts/convenience.yy",
|
||||
},
|
||||
"resourceVersion": "1.0",
|
||||
"name": "gcd",
|
||||
"tags": [],
|
||||
"resourceType": "GMScript",
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue