Can something like ServerClient.Origin be added to the addon which sets or gets a vector? I know its easy to do using all the current Origin methods but this could reduce many lines of code and also the complexity of a plugin.Something like
CSHARP Code
- public Vector Origin
- {
- get
- {
- }
- set
- {
- this.X=value.X;
- this.Y=value.Y;
- this.Z=value.Z
- }
- }