From dccfbaf34b46a7d14b13d602ba2ae34a1965071c Mon Sep 17 00:00:00 2001 From: ksplatdev Date: Fri, 9 Jul 2021 12:49:16 -0400 Subject: [PATCH] Release 1.1.0 --- README.md | 7 ++++--- docs/index.html | 7 ++++--- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index d6ec6df2..3dd0f293 100644 --- a/README.md +++ b/README.md @@ -117,6 +117,7 @@ The Duck Namespace has types such as gameobject, every class config, all classes ├── SECURITY.md ├── src │ ├── base +│ │ ├── amount.ts │ │ ├── once.ts │ │ └── render.ts │ ├── core @@ -148,7 +149,9 @@ The Duck Namespace has types such as gameobject, every class config, all classes │ │ ├── map │ │ │ └── tilemap.ts │ │ ├── math -│ │ │ └── clamp.ts +│ │ │ ├── clamp.ts +│ │ │ ├── randomFloat.ts +│ │ │ └── randomInt.ts │ │ ├── particles │ │ │ ├── particleEmitter.ts │ │ │ └── particle.ts @@ -185,8 +188,6 @@ The Duck Namespace has types such as gameobject, every class config, all classes │ │ └── version.ts │ ├── index.ts │ └── utils -│ ├── randomFloat.ts -│ ├── randomInt.ts │ └── validURL.ts ├── tsconfig.json └── webpack.config.js diff --git a/docs/index.html b/docs/index.html index fd4cba7e..05e787b6 100644 --- a/docs/index.html +++ b/docs/index.html @@ -287,6 +287,7 @@

File Structure

├── SECURITY.md ├── src │ ├── base +│ │ ├── amount.ts │ │ ├── once.ts │ │ └── render.ts │ ├── core @@ -318,7 +319,9 @@

File Structure

│ │ ├── map │ │ │ └── tilemap.ts │ │ ├── math -│ │ │ └── clamp.ts +│ │ │ ├── clamp.ts +│ │ │ ├── randomFloat.ts +│ │ │ └── randomInt.ts │ │ ├── particles │ │ │ ├── particleEmitter.ts │ │ │ └── particle.ts @@ -355,8 +358,6 @@

File Structure

│ │ └── version.ts │ ├── index.ts │ └── utils -│ ├── randomFloat.ts -│ ├── randomInt.ts │ └── validURL.ts ├── tsconfig.json └── webpack.config.js