mirror of
https://github.com/davidallendj/gdpm.git
synced 2025-12-20 03:27:02 -07:00
Initial commit
First commit with most of the main features implemented. May still need some bug fixes here and there.
This commit is contained in:
commit
1893c7c36b
26 changed files with 2839 additions and 0 deletions
14
src/main.cpp
Normal file
14
src/main.cpp
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
|
||||
// Godot Package Manager (GPM)
|
||||
|
||||
#include "constants.hpp"
|
||||
#include "log.hpp"
|
||||
#include "config.hpp"
|
||||
#include "package_manager.hpp"
|
||||
|
||||
int main(int argc, char **argv){
|
||||
gdpm::package_manager::initialize(argc, argv);
|
||||
gdpm::package_manager::execute();
|
||||
gdpm::package_manager::finalize();
|
||||
return 0;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue