12 lines
212 B
C#
12 lines
212 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
[System.Serializable]
|
|
public class Proposition
|
|
{
|
|
public string photoUrl;
|
|
public Player owner;
|
|
public string[] voters;
|
|
}
|