style: cleaning import

This commit is contained in:
Michel Roux 2024-01-27 20:05:24 +01:00
parent bb45f55ece
commit 94c3daa525
5 changed files with 9 additions and 7 deletions

View File

@ -1,8 +1,9 @@
using Newtonsoft.Json;
using System;
using System.Text.RegularExpressions;
[Serializable]
[Newtonsoft.Json.JsonObject]
[JsonObject]
public class Player
{
public string name;

View File

@ -1,9 +1,10 @@
using Firebase.Firestore;
using Newtonsoft.Json;
using System;
using UnityEngine;
[Serializable, FirestoreData]
[Newtonsoft.Json.JsonObject]
[JsonObject]
public class Prompt
{
[field: SerializeField]

View File

@ -1,7 +1,8 @@
using Newtonsoft.Json;
using System;
[Serializable]
[Newtonsoft.Json.JsonObject]
[JsonObject]
public class Proposition
{
public string photoUrl;

View File

@ -1,7 +1,8 @@
using Newtonsoft.Json;
using System;
[Serializable]
[Newtonsoft.Json.JsonObject]
[JsonObject]
public class Question
{
public string promptId;

View File

@ -1,11 +1,9 @@
using System;
using System.Collections.Generic;
using UnityEngine;
using Newtonsoft.Json;
using System.Collections;
[Serializable]
[Newtonsoft.Json.JsonObject]
[JsonObject]
public class Room
{
public string code;