| | 1 | | namespace DCL |
| | 2 | | { |
| | 3 | | public class DataStore_Common |
| | 4 | | { |
| 751 | 5 | | public readonly BaseVariable<bool> isSignUpFlow = new BaseVariable<bool>(); |
| 751 | 6 | | public readonly BaseVariable<bool> isApplicationQuitting = new BaseVariable<bool>(); |
| 751 | 7 | | public readonly BaseDictionary<string, WearableItem> wearables = new BaseDictionary<string, WearableItem>(); |
| 751 | 8 | | public readonly BaseVariable<bool> isPlayerRendererLoaded = new BaseVariable<bool>(); |
| 751 | 9 | | public readonly BaseVariable<AppMode> appMode = new BaseVariable<AppMode>(); |
| 751 | 10 | | public readonly BaseVariable<NFTPromptModel> onOpenNFTPrompt = new BaseVariable<NFTPromptModel>(); |
| 751 | 11 | | public readonly BaseVariable<bool> isTutorialRunning = new BaseVariable<bool>(false); |
| | 12 | | } |
| | 13 | | } |