Shaun M Reed ad57d40c70 Relocated Asset Packs
Any scripts contained in subdirectory "WebPlayerTemplates/" will not be
compiled
-Fixes build errors created from reference scripts within Ultimate GUI
Kit
2017-08-26 17:21:24 -04:00

16 lines
332 B
C#

using System.Collections.Generic;
using UnityEngine;
public class Player
{
public string FirstName, Name, FacebookId;
public Texture ProfilePic;
public int Score;
public Dictionary<string, string> Data;
public void setProfilePic(Texture pic)
{ // convenient for callbacks
ProfilePic = pic;
}
}