catgirl-engine 0.14.44

A game engine for cool moddability and procedurally generated data
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env python3

import os

# Import catgirl_engine.pyx
import catgirl_engine


if __name__ == "__main__":
    args: list = [os.path.realpath(__file__), "--version"]

    catgirl_engine.run(args)