Added XML documentation for NetworkedPrefab class

This commit is contained in:
Albin Corén 2018-04-09 17:03:25 +02:00
parent 47122c4c0e
commit 11c6890da2

View File

@ -3,10 +3,19 @@ using UnityEngine;
namespace MLAPI.Data namespace MLAPI.Data
{ {
/// <summary>
/// A class that represents a NetworkedPrefab
/// </summary>
[Serializable] [Serializable]
public class NetworkedPrefab public class NetworkedPrefab
{ {
/// <summary>
/// The name of the networked prefab
/// </summary>
public string name; public string name;
/// <summary>
/// The gameobject of the prefab
/// </summary>
public GameObject prefab; public GameObject prefab;
} }
} }