13 lines
444 B
C#
13 lines
444 B
C#
using UnityEngine;
|
|
|
|
namespace Needle.Engine.Deployment
|
|
{
|
|
[DeploymentComponent]
|
|
[HelpURL(Constants.DocumentationUrl)]
|
|
[AddComponentMenu("Needle Engine/Deploy/Deploy to Netlify" + Needle.Engine.Constants.NeedleComponentTags)]
|
|
[CustomComponentHeaderLink("dce2961da8fdff1419da926c4254ab9f", "https://engine.needle.tools/docs/deployment.html#deploy-to-netlify")]
|
|
public class DeployToNetlify : MonoBehaviour
|
|
{
|
|
public string siteName;
|
|
}
|
|
} |