baseline: OpenMU upstream b5a0961 (fresh source)

This commit is contained in:
Acentech Dev
2026-07-14 19:00:35 +03:00
parent 450402e47d
commit 36fc125d5c
11968 changed files with 748705 additions and 0 deletions

12
src/Interfaces/Readme.md Normal file
View File

@@ -0,0 +1,12 @@
# Interfaces
This project contains the interfaces which are used to communicate between the
different sub-systems ("servers") of the whole system.
The game logic and game server should only use these interfaces instead of the
actual implementations.
The goal is to make them exchangeable. This can be helpful for tests, and also
if we want to move specific systems to other machines or external processes
(scale-out).
Then there could be an implementation of an interface which forwards the calls
over the network (etc.) to another process.