> ## Documentation Index
> Fetch the complete documentation index at: https://docs.gx402.org/llms.txt
> Use this file to discover all available pages before exploring further.

# Real-time Sync

> Synchronize game states across platforms with Gx402

# Real-time Sync

The Gx402 SDK provides powerful real-time synchronization capabilities that work seamlessly across all supported platforms, ensuring consistent game experiences for players regardless of their platform.

## Overview

Real-time sync in Gx402 enables:

* Cross-platform game state synchronization
* Multiplayer game state management
* Persistent data sync across sessions
* Offline-first capabilities with automatic sync

## Getting Started

To enable real-time synchronization, configure the Gx402 SDK during initialization:

```javascript theme={null}
// Enable real-time sync
Gx402.configure({
  enableRealtimeSync: true,
  // Additional configuration options can be set here
});
```

Once enabled, the SDK will automatically manage real-time data consistency across connected clients and platforms.
