caesarpad
Caesar III on an iPad-shaped canvas, powered by Augustus.
파일 탐색기
- ios-build.yml
- devices.log
- runtimes.log
- toolchain.log
- build.log
- game-data-required.png
- launch.log
- injection.log
- launch.log
- runtime.log
- playable-flow-pass-2.log
- long-press-engine-test-final.log
- touch-controls-pass-8.log
- build-final.log
- lifecycle-pass-2.log
- full-suite.log
- repeat-1.log
- repeat-2.log
- full-suite-repeat-2.log
- full-suite-repeat.log
- install-pass.log
- touch-stable-1.log
- touch-stable-2.log
- touch-stable-3.log
- AppIcon.png
- 00-product-overview.md
- 01-functional-requirements.md
- 02-technical-requirements.md
- 03-ux-requirements.md
- 04-roadmap.md
- 05-task-breakdown.md
- 06-testing-plan.md
- 07-risk-register.md
- 08-release-strategy.md
- caesarpad-advisors.jpg
- caesarpad-campaign.jpg
- caesarpad-empire-map.jpg
- caesarpad-gameplay.jpg
- annex-augustus.md
- annex-community.md
- annex-ios-sdl.md
- annex-julius.md
- annex-licensing.md
- engine-comparison.md
- feasibility-report.md
- INSTALL_IPA.md
- RELEASE_CHECKLIST.md
- augustus
- 0001-ios-landscape-only.patch
- 0002-ios-long-press-right-click.patch
- 0003-ios-native-pause-button.patch
- 0004-ios-lifecycle-autosave.patch
- 0005-ios-caesarpad-name.patch
- 0006-ios-touch-cursor-and-scale.patch
- 0007-ios-two-finger-pan-intent.patch
- 0008-ios-controls-help.patch
- 0009-ios-apple-pencil-mode.patch
- 0010-ios-simplify-control-bar.patch
- 0011-ios-top-controls-and-video-lifecycle.patch
- 0012-ios-release-identity-and-files.patch
- 0013-ios-importer-feedback.patch
- apply-patches.sh
- build-device.sh
- build.sh
- check-repo-safety.sh
- fetch-deps.sh
- inject-data.sh
- install.sh
- package-ios.sh
- simulator.sh
- test-lifecycle.sh
- test-touch.sh
- test-ui.sh
- test.sh
- long_press_test.c
- CaesarPadUITests.swift
- CaesarPadUITests.xcscheme.in
- CMakeLists.txt
- HostApp.swift
- .gitattributes
- .gitignore
- .gitmodules
- FINAL_REPORT.md
- LICENSE
- README.md
- RIGHTS_AND_LICENSES.md
- STATE.md
- THIRD_PARTY_NOTICES.md
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
git clone
설명 보기 ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
git submodule
설명 보기 ▼
git submodule
Inspect, update, and manage submodules.
git submodule
View existing submodules and the checked-out commit for each one:
git submodule update --init --recursive
Install a repository's submodules (listed in `.gitmodules`):
git submodule add {{repository_url}}
Add a Git repository as a submodule of the current one:
