27 lines
339 B
Markdown
27 lines
339 B
Markdown
# Anm2ed
|
|
|
|
Reimplementation of *The Binding of Isaac: Rebirth*'s proprietary animation editor; dealing with manipulating the XML-based ".anm2" format.
|
|
|
|
# Dependencies
|
|
- SDL3
|
|
- GLEW
|
|
|
|
# Build
|
|
|
|
After cloning, make sure to initialize the submodules:
|
|
|
|
```git submodules update --init```
|
|
|
|
Then:
|
|
|
|
```
|
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
cmake ..
|
|
|
|
make -j
|
|
```
|