Skip to content

Instantly share code, notes, and snippets.

@timrodz
Last active March 21, 2018 01:33
Show Gist options
  • Save timrodz/db92598bed64de07ff71a1e772df79a2 to your computer and use it in GitHub Desktop.
Save timrodz/db92598bed64de07ff71a1e772df79a2 to your computer and use it in GitHub Desktop.
Delegate Tutorial Step 2
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class UIController : MonoBehaviour
{
// UI elements
public Button ButtonSendMessage;
public InputField InputField;
public Text MessageDisplay;
// Use this for initialization
void Start()
{
}
void SendMessageUpdateRequest()
{
}
void UpdateMessage(string _message)
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment