• This project
    • Loading...
  • Sign in

I_Jemin / dotnet-Network-Programming-with-Unity

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • dotnet-Network-Programming-with-Unity
  • Network Chatting
  • Assets
  • Scripts
  • MessageText.cs
  • I_Jemin's avatar
    Refactoring Chat App · 51bacae8
    51bacae8 Browse Files
    I_Jemin authored 2018-02-01 19:10:20 +0900
MessageText.cs 250 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;

public class MessageText : MonoBehaviour {

	public Text messageText;

	public void SetUp(string message)
	{
		messageText.text = message;
	}

}