diff options
author | gumi <mekolat@users.noreply.github.com> | 2017-05-17 14:01:20 -0400 |
---|---|---|
committer | gumi <mekolat@users.noreply.github.com> | 2017-05-28 11:49:42 -0400 |
commit | cb594e2deb23c810ea64f97f0513af5fc356bd38 (patch) | |
tree | 8feceea0e3941ceb28e4946b1ea185bc495806a2 /src/map/script.h | |
parent | cb3e2f5f3b91d0a1f7711eff9c10ae9a655a74f2 (diff) | |
download | hercules-cb594e2deb23c810ea64f97f0513af5fc356bd38.tar.gz hercules-cb594e2deb23c810ea64f97f0513af5fc356bd38.tar.bz2 hercules-cb594e2deb23c810ea64f97f0513af5fc356bd38.tar.xz hercules-cb594e2deb23c810ea64f97f0513af5fc356bd38.zip |
add exponentiation operator
Diffstat (limited to 'src/map/script.h')
-rw-r--r-- | src/map/script.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/map/script.h b/src/map/script.h index 8caec961a..fddcf4908 100644 --- a/src/map/script.h +++ b/src/map/script.h @@ -235,6 +235,7 @@ typedef enum c_op { C_SUB_PRE, // --a C_RE_EQ, // ~= C_RE_NE, // ~! + C_POW, // ** } c_op; /// Script queue options |