initial upload
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
|
||||
[Serializable]
|
||||
public class ChatEntry
|
||||
{
|
||||
public string sender;
|
||||
|
||||
public string text;
|
||||
|
||||
public bool mine;
|
||||
|
||||
public ChatEntry()
|
||||
{
|
||||
sender = string.Empty;
|
||||
text = string.Empty;
|
||||
mine = true;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user