mirror of https://github.com/axmolengine/axmol.git
10 lines
263 B
Python
10 lines
263 B
Python
|
#! /usr/bin/evn python
|
||
|
# filename = create-multi-platform-projects.py
|
||
|
|
||
|
import os
|
||
|
from tools.project_creator import create_project
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
os.chdir(os.getcwd()+'/tools/project_creator/')
|
||
|
create_project.createPlatformProjects()
|