sodoff-mmo/src/Data/DataWrapper.cs
2023-09-02 22:52:48 +02:00

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;
}
}