AssemblyCSharp.ChimeraGameStateStore.ChimeraGameStateStore C# (CSharp) 메소드

ChimeraGameStateStore() 공개 메소드

public ChimeraGameStateStore ( string storageFile, BackendConnection backendConnection, object>.Dictionary initialGameState ) : System
storageFile string
backendConnection BackendConnection
initialGameState object>.Dictionary
리턴 System
        public ChimeraGameStateStore(string storageFile, BackendConnection backendConnection, Dictionary<string, object> initialGameState)
        {
            _storageFile = storageFile;
            _manifestFile = storageFile + ".manifest";
            _connection = backendConnection;
            _remoteGameState = initialGameState;
        }