├── AMBuildScript ├── AMBuilder ├── CMiniDumpComment.hpp ├── ExportMap ├── PackageScript ├── accelerator_local.cpp ├── accelerator_local.h ├── configure.py └── network_connection.pb.h /AMBuildScript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komashchenko/AcceleratorLocal/HEAD/AMBuildScript -------------------------------------------------------------------------------- /AMBuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komashchenko/AcceleratorLocal/HEAD/AMBuilder -------------------------------------------------------------------------------- /CMiniDumpComment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komashchenko/AcceleratorLocal/HEAD/CMiniDumpComment.hpp -------------------------------------------------------------------------------- /ExportMap: -------------------------------------------------------------------------------- 1 | { 2 | global: CreateInterface; 3 | local: *; 4 | }; 5 | -------------------------------------------------------------------------------- /PackageScript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komashchenko/AcceleratorLocal/HEAD/PackageScript -------------------------------------------------------------------------------- /accelerator_local.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komashchenko/AcceleratorLocal/HEAD/accelerator_local.cpp -------------------------------------------------------------------------------- /accelerator_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komashchenko/AcceleratorLocal/HEAD/accelerator_local.h -------------------------------------------------------------------------------- /configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komashchenko/AcceleratorLocal/HEAD/configure.py -------------------------------------------------------------------------------- /network_connection.pb.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | typedef int ENetworkDisconnectionReason; --------------------------------------------------------------------------------