mirror of
https://github.com/Steffo99/better-tee.git
synced 2024-11-21 14:54:18 +00:00
Boh? Sono cambiate cose
This commit is contained in:
parent
4da71a5717
commit
8bd953ddfa
1 changed files with 22 additions and 0 deletions
22
Assets/Code/Common/ConnectedViewer.cs
Normal file
22
Assets/Code/Common/ConnectedViewer.cs
Normal file
|
@ -0,0 +1,22 @@
|
|||
using System;
|
||||
|
||||
|
||||
[Serializable]
|
||||
public class ConnectedViewerData {
|
||||
public string name;
|
||||
public int id;
|
||||
}
|
||||
|
||||
public class ConnectedViewer {
|
||||
public string name;
|
||||
public int id;
|
||||
|
||||
public ConnectedViewerData Data {
|
||||
get {
|
||||
return new ConnectedViewerData {
|
||||
name = this.name,
|
||||
id = this.id
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue