mirror of
https://github.com/SoDOff-Project/sodoff-mmo.git
synced 2025-11-27 04:26:51 -08:00
12 lines
270 B
C#
12 lines
270 B
C#
namespace sodoffmmo.Data;
|
|
public class DataWrapper {
|
|
|
|
public int Type { get; private set; }
|
|
public object Data { get; private set; }
|
|
|
|
public DataWrapper(NetworkDataType type, object data) {
|
|
this.Type = (int)type;
|
|
this.Data = data;
|
|
}
|
|
}
|