-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
greatly increasing Infinity Ward support to cover CoD2 & CoD4:MW
- Loading branch information
1 parent
0c5574f
commit 017406b
Showing
10 changed files
with
537 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
"""Infinity Ward created the Call of Duty Franchise, built on the idTech3 (RTCW) engine. | ||
.bsp format shares IdTech's b'IBSP' FILE_MAGIC""" | ||
from . import call_of_duty1 # (.bsp in .pk3) | ||
# TODO: call_of_duty2 # (.d3dbsp in .iwd) | ||
# TODO: call_of_duty4 # (.bsp in .ff) | ||
from . import call_of_duty2 # (.d3dbsp in .iwd) | ||
from . import call_of_duty4 # (.d3dbsp in .ff) | ||
# TODO: blops3 | ||
|
||
# NOTE: I'm not buying any CoDs until Kotick is gone | ||
|
||
|
||
scripts = [call_of_duty1] | ||
scripts = [call_of_duty1, call_of_duty2, call_of_duty4] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.