mirror of
https://github.com/Xeeynamo/sotn-decomp.git
synced 2024-11-23 13:09:44 +00:00
151346d62c
Version 18.1.6 pulled from https://github.com/xeeynamo/sotn-decomp/releases and compiled with the following: ```Dockerfile FROM alpine:latest RUN apk add --no-cache \ build-base \ cmake \ git \ ninja \ libstdc++ \ zlib-dev \ python3 ENV LLVM_VERSION=llvmorg-18.1.6 RUN mkdir -p /opt/llvm \ && cd /opt/llvm \ && git clone --depth=1 --branch $LLVM_VERSION https://github.com/llvm/llvm-project.git \ && mkdir -p llvm-project/build \ && cd llvm-project/build \ && cmake -G Ninja \ -DLLVM_ENABLE_PROJECTS=clang \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_CXX_FLAGS="-static-libstdc++ -static-libgcc" \ -DCMAKE_EXE_LINKER_FLAGS="-static" \ -DLLVM_ENABLE_RTTI=ON \ ../llvm \ && ninja clang-format \ && strip bin/clang-format FROM scratch COPY --from=0 /opt/llvm/llvm-project/build/bin/clang-format /clang-format ENTRYPOINT ["/usr/local/bin/clang-format"] ``` `docker build --output . .` Original source code: https://github.com/llvm/llvm-project/tree/llvmorg-18.1.6 commit: `1118c2e05e67a36ed8ca250524525cdb66a55256`
11 lines
166 B
C
11 lines
166 B
C
#ifndef PLAYER_H
|
|
#define PLAYER_H
|
|
|
|
typedef enum {
|
|
TELEPORT_CHECK_NONE = 0,
|
|
TELEPORT_CHECK_TO_RTOP = 2,
|
|
TELEPORT_CHECK_TO_TOP = 4
|
|
} TeleportCheck;
|
|
|
|
#endif
|