| | 1 | | using DCL.Controllers; |
| | 2 | |
|
| | 3 | | namespace DCL |
| | 4 | | { |
| | 5 | | public class DataStore_ContentModeration |
| | 6 | | { |
| | 7 | | public enum AdultContentAgeConfirmationResult |
| | 8 | | { |
| | 9 | | Accepted, |
| | 10 | | Rejected, |
| | 11 | | } |
| | 12 | |
|
| 374 | 13 | | public readonly BaseVariable<bool> adultContentSettingEnabled = new (false); |
| 374 | 14 | | public readonly BaseVariable<bool> adultContentAgeConfirmationVisible = new (false); |
| 374 | 15 | | public readonly BaseVariable<AdultContentAgeConfirmationResult> adultContentAgeConfirmationResult = new (AdultCo |
| 374 | 16 | | public readonly BaseVariable<(bool isVisible, SceneContentCategory rating)> reportingScenePanelVisible = new ((f |
| | 17 | | } |
| | 18 | | } |