From 11c6890da2f384e20acdedf3de553061957bfa8e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com>
Date: Mon, 9 Apr 2018 17:03:25 +0200
Subject: [PATCH] Added XML documentation for NetworkedPrefab class
---
MLAPI/Data/NetworkedPrefab.cs | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/MLAPI/Data/NetworkedPrefab.cs b/MLAPI/Data/NetworkedPrefab.cs
index e42b548..9354827 100644
--- a/MLAPI/Data/NetworkedPrefab.cs
+++ b/MLAPI/Data/NetworkedPrefab.cs
@@ -3,10 +3,19 @@ using UnityEngine;
namespace MLAPI.Data
{
+ ///
+ /// A class that represents a NetworkedPrefab
+ ///
[Serializable]
public class NetworkedPrefab
{
+ ///
+ /// The name of the networked prefab
+ ///
public string name;
+ ///
+ /// The gameobject of the prefab
+ ///
public GameObject prefab;
}
}