-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
config: file type check ignores classes (#852)
- Loading branch information
1 parent
b1df2c0
commit b04abe1
Showing
3 changed files
with
25 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
class CfgVehicles { | ||
class MyVehicle { | ||
model = "test.p3d"; | ||
editorPreview = "test.jgp"; | ||
wounds[] = {"would1.pac", "wound2.paa", "wound3.png"}; | ||
model = "x\mod\test.p3d"; | ||
uimodel = "x\mod\test_no_path"; | ||
editorPreview = "x\mod\test.jgp"; | ||
wounds[] = {"x\mod\would1.pac", "x\mod\wound2.paa", "x\mod\wound3.png"}; | ||
modelspecial = "class_name"; | ||
}; | ||
}; |
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