-
-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d66412e
commit 018a338
Showing
64 changed files
with
4,574 additions
and
347 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,6 @@ releases/ | |
|
||
# VSCode Extension | ||
node_modules | ||
dist/ | ||
*.vsix | ||
|
||
# Browser Extensions | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name = "HEMTT" | ||
author = "BrettMayson" | ||
prefix = "hemtt" | ||
mainprefix = "x" | ||
|
||
[version] | ||
git_hash = 0 | ||
major = 0 | ||
minor = 0 | ||
patch = 0 | ||
|
||
[files] | ||
include = [ | ||
"hemtt_comm_x64.dll" | ||
] |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
[package] | ||
name = "hemtt-comm" | ||
authors = ["Brett Mayson <[email protected]>"] | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
[lib] | ||
name = "hemtt_comm" | ||
crate-type = ["cdylib"] | ||
|
||
[dependencies] | ||
hemtt-common = { path = "../libs/common" } | ||
|
||
arma-rs = "1.10.5" | ||
interprocess = { workspace = true } | ||
serde_json = { workspace = true } |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
x\hemtt\addons\main |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
class CfgFunctions { | ||
class HEMTT { | ||
class Extension { | ||
class setMission { | ||
file = QPATHTO_F(functions\setMission); | ||
preInit = 1; | ||
}; | ||
}; | ||
}; | ||
}; |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#include "script_component.hpp" | ||
|
||
class CfgPatches { | ||
class ADDON { | ||
name = QUOTE(COMPONENT); | ||
units[] = {}; | ||
weapons[] = {}; | ||
requiredVersion = REQUIRED_VERSION; | ||
requiredAddons[] = {}; | ||
VERSION_CONFIG; | ||
}; | ||
}; | ||
|
||
#include "CfgFunctions.hpp" |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
diag_log format ["setMission: %1", getMissionPath ""]; | ||
diag_log format ["response: %1", "hemtt_comm" callExtension ["mission", [getMissionPath ""]]]; |
Oops, something went wrong.