Skip to content

Commit

Permalink
add Group module.
Browse files Browse the repository at this point in the history
  • Loading branch information
doubleactii committed Jan 11, 2024
1 parent 86a2147 commit 18df230
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,6 @@
[submodule "src/submodules/Pulse"]
path = src/submodules/Pulse
url = https://github.com/EvitcaStudio/Pulse.git
[submodule "src/submodules/Group"]
path = src/submodules/Group
url = https://github.com/EvitcaStudio/Group.git
6 changes: 3 additions & 3 deletions dist/core.min.mjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "core",
"version": "1.0.0",
"version": "1.1.0",
"description": "The Core module is a versatile collection of specialized modules designed to enhance the game development experience.",
"main": "dist/core.min.mjs",
"scripts": {
Expand Down
6 changes: 6 additions & 0 deletions src/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,14 @@ import { Chronos } from './submodules/Chronos/dist/chronos.min.mjs';
import { Utils } from './submodules/Utils/dist/utils.min.mjs';
import { StateManager, State } from './submodules/StateManager/dist/state-manager.min.mjs';
import { Pulse } from './submodules/Pulse/dist/pulse.min.mjs';
import { Group } from './submodules/Group/dist/group.min.mjs';

class CoreEngine {
/**
* The Group module is a powerful utility designed to simplify the manipulation of collections in JavaScript. It enables you to treat a set of elements as a single unit, allowing you to perform actions on the entire group without the need for cumbersome loops.
* @site https://github.com/EvitcaStudio/Group
*/
Group = Group;
/**
* Tween is a small library for creating tweening animations in JavaScript. It allows you to smoothly animate an object's properties from one value to another over a specified duration using easing functions.
* @site https://github.com/EvitcaStudio/Tween
Expand Down
1 change: 1 addition & 0 deletions src/submodules/Group
Submodule Group added at 691199

0 comments on commit 18df230

Please sign in to comment.