├── Cflat.cpp ├── Cflat.h ├── CflatConfig.h ├── CflatGlobal.h ├── CflatGlobalConfig.h ├── CflatHelper.h ├── CflatMacros.h ├── Internal ├── CflatErrorMessages.inl ├── CflatExpressions.inl ├── CflatGlobalFunctions.inl └── CflatStatements.inl ├── README.md ├── UnrealModule ├── Cflat.Build.cs ├── CflatUnrealAid.h ├── Private │ ├── CflatDebugAdapter.cpp │ ├── CflatModule.cpp │ └── CflatModuleAutoRegister.inl └── Public │ ├── CflatDebugAdapter.h │ └── CflatModule.h └── tests └── tests.cpp /Cflat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturocepeda/Cflat/HEAD/Cflat.cpp -------------------------------------------------------------------------------- /Cflat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturocepeda/Cflat/HEAD/Cflat.h -------------------------------------------------------------------------------- /CflatConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturocepeda/Cflat/HEAD/CflatConfig.h -------------------------------------------------------------------------------- /CflatGlobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturocepeda/Cflat/HEAD/CflatGlobal.h -------------------------------------------------------------------------------- /CflatGlobalConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturocepeda/Cflat/HEAD/CflatGlobalConfig.h -------------------------------------------------------------------------------- /CflatHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturocepeda/Cflat/HEAD/CflatHelper.h -------------------------------------------------------------------------------- /CflatMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturocepeda/Cflat/HEAD/CflatMacros.h -------------------------------------------------------------------------------- /Internal/CflatErrorMessages.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturocepeda/Cflat/HEAD/Internal/CflatErrorMessages.inl -------------------------------------------------------------------------------- /Internal/CflatExpressions.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturocepeda/Cflat/HEAD/Internal/CflatExpressions.inl -------------------------------------------------------------------------------- /Internal/CflatGlobalFunctions.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturocepeda/Cflat/HEAD/Internal/CflatGlobalFunctions.inl -------------------------------------------------------------------------------- /Internal/CflatStatements.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturocepeda/Cflat/HEAD/Internal/CflatStatements.inl -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturocepeda/Cflat/HEAD/README.md -------------------------------------------------------------------------------- /UnrealModule/Cflat.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturocepeda/Cflat/HEAD/UnrealModule/Cflat.Build.cs -------------------------------------------------------------------------------- /UnrealModule/CflatUnrealAid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturocepeda/Cflat/HEAD/UnrealModule/CflatUnrealAid.h -------------------------------------------------------------------------------- /UnrealModule/Private/CflatDebugAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturocepeda/Cflat/HEAD/UnrealModule/Private/CflatDebugAdapter.cpp -------------------------------------------------------------------------------- /UnrealModule/Private/CflatModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturocepeda/Cflat/HEAD/UnrealModule/Private/CflatModule.cpp -------------------------------------------------------------------------------- /UnrealModule/Private/CflatModuleAutoRegister.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturocepeda/Cflat/HEAD/UnrealModule/Private/CflatModuleAutoRegister.inl -------------------------------------------------------------------------------- /UnrealModule/Public/CflatDebugAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturocepeda/Cflat/HEAD/UnrealModule/Public/CflatDebugAdapter.h -------------------------------------------------------------------------------- /UnrealModule/Public/CflatModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturocepeda/Cflat/HEAD/UnrealModule/Public/CflatModule.h -------------------------------------------------------------------------------- /tests/tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturocepeda/Cflat/HEAD/tests/tests.cpp --------------------------------------------------------------------------------