Skip to content

Commit

Permalink
refactor: refactor 'BloodEngine' package to support the Wally PM
Browse files Browse the repository at this point in the history
  • Loading branch information
4x8Matrix committed Aug 6, 2024
1 parent 4ad4604 commit a18e154
Show file tree
Hide file tree
Showing 9 changed files with 58 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
*.rbxl
*.lock

**/Packages/**
**/ServerPackages/**
**/DevPackages/**

sourcemap.json
8 changes: 8 additions & 0 deletions aftman.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# This file lists tools managed by Aftman, a cross-platform toolchain manager.
# For more information, see https://github.com/LPGhatguy/aftman

# To add a new tool, add an entry to this table.

[tools]
wally = "UpliftGames/[email protected]"
rojo = "rojo-rbx/[email protected]"
6 changes: 6 additions & 0 deletions default.project.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"name": "Blood Engine",
"tree": {
"$path": "src"
}
}
20 changes: 20 additions & 0 deletions development.project.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"name": "Blood Engine",
"tree": {
"$className": "DataModel",

"ReplicatedStorage": {
"$className": "ReplicatedStorage",
"$ignoreUnknownInstances": true,

"Packages": {
"$className": "Folder",
"$path": "Packages",

"BloodEngine": {
"$path": "src"
}
}
}
}
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
16 changes: 16 additions & 0 deletions wally.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[package]
name = "rotntake/BloodEngine"
version = "0.1.0"
realm = "shared"
registry = "https://github.com/upliftgames/wally-index"
licence = "Unlicense"
authors = ["rotntake"]

description = "A droplet emitter system."

exclude = ["**"]
include = ["src", "src/*", "default.project.json", "wally.toml"]

[dev-dependencies]

[dependencies]

0 comments on commit a18e154

Please sign in to comment.