├── OACClient └── Interface │ └── IMachineIdentifier.h ├── OACEngine └── Interface │ ├── IAlerter.h │ ├── IBasePlugin.h │ ├── IBaseWin.h │ ├── IDispatcher.h │ ├── IDriver.h │ ├── IEngine.h │ ├── IFileSystem.h │ ├── IMachineIdentifier.h │ ├── IMessageCodec.h │ ├── INetwork.h │ ├── IReport.h │ ├── IWinKernel.h │ ├── IWinUser.h │ └── Plugins │ ├── IGameIntegrity.h │ └── ISelfIntegrity.h ├── OACService └── .placeholder ├── README.md ├── common ├── .placeholder ├── ClientInterface.h ├── EngineInterface.h ├── IBaseInterface.h ├── OACBuffer.h ├── OACMessage.h └── OACString.h └── thirdparty └── .placeholder /OACClient/Interface/IMachineIdentifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewWorldComingSoon/OAC/HEAD/OACClient/Interface/IMachineIdentifier.h -------------------------------------------------------------------------------- /OACEngine/Interface/IAlerter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewWorldComingSoon/OAC/HEAD/OACEngine/Interface/IAlerter.h -------------------------------------------------------------------------------- /OACEngine/Interface/IBasePlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewWorldComingSoon/OAC/HEAD/OACEngine/Interface/IBasePlugin.h -------------------------------------------------------------------------------- /OACEngine/Interface/IBaseWin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewWorldComingSoon/OAC/HEAD/OACEngine/Interface/IBaseWin.h -------------------------------------------------------------------------------- /OACEngine/Interface/IDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewWorldComingSoon/OAC/HEAD/OACEngine/Interface/IDispatcher.h -------------------------------------------------------------------------------- /OACEngine/Interface/IDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewWorldComingSoon/OAC/HEAD/OACEngine/Interface/IDriver.h -------------------------------------------------------------------------------- /OACEngine/Interface/IEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewWorldComingSoon/OAC/HEAD/OACEngine/Interface/IEngine.h -------------------------------------------------------------------------------- /OACEngine/Interface/IFileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewWorldComingSoon/OAC/HEAD/OACEngine/Interface/IFileSystem.h -------------------------------------------------------------------------------- /OACEngine/Interface/IMachineIdentifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewWorldComingSoon/OAC/HEAD/OACEngine/Interface/IMachineIdentifier.h -------------------------------------------------------------------------------- /OACEngine/Interface/IMessageCodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewWorldComingSoon/OAC/HEAD/OACEngine/Interface/IMessageCodec.h -------------------------------------------------------------------------------- /OACEngine/Interface/INetwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewWorldComingSoon/OAC/HEAD/OACEngine/Interface/INetwork.h -------------------------------------------------------------------------------- /OACEngine/Interface/IReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewWorldComingSoon/OAC/HEAD/OACEngine/Interface/IReport.h -------------------------------------------------------------------------------- /OACEngine/Interface/IWinKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewWorldComingSoon/OAC/HEAD/OACEngine/Interface/IWinKernel.h -------------------------------------------------------------------------------- /OACEngine/Interface/IWinUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewWorldComingSoon/OAC/HEAD/OACEngine/Interface/IWinUser.h -------------------------------------------------------------------------------- /OACEngine/Interface/Plugins/IGameIntegrity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewWorldComingSoon/OAC/HEAD/OACEngine/Interface/Plugins/IGameIntegrity.h -------------------------------------------------------------------------------- /OACEngine/Interface/Plugins/ISelfIntegrity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewWorldComingSoon/OAC/HEAD/OACEngine/Interface/Plugins/ISelfIntegrity.h -------------------------------------------------------------------------------- /OACService/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # OAC 2 | Open Anti Cheat 3 | 4 | # Coming soon 5 | -------------------------------------------------------------------------------- /common/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/ClientInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewWorldComingSoon/OAC/HEAD/common/ClientInterface.h -------------------------------------------------------------------------------- /common/EngineInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewWorldComingSoon/OAC/HEAD/common/EngineInterface.h -------------------------------------------------------------------------------- /common/IBaseInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewWorldComingSoon/OAC/HEAD/common/IBaseInterface.h -------------------------------------------------------------------------------- /common/OACBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewWorldComingSoon/OAC/HEAD/common/OACBuffer.h -------------------------------------------------------------------------------- /common/OACMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewWorldComingSoon/OAC/HEAD/common/OACMessage.h -------------------------------------------------------------------------------- /common/OACString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewWorldComingSoon/OAC/HEAD/common/OACString.h -------------------------------------------------------------------------------- /thirdparty/.placeholder: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------