Merged redundant project onto server
This commit is contained in:
13
src/Server/Entity.cs
Normal file
13
src/Server/Entity.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using Server;
|
||||
|
||||
namespace Server;
|
||||
|
||||
public class Entity(Dictionary<string, string> attributes, Probmethods.probMethodDelegate probMethod, List<Datapoint> datapoints, string name)
|
||||
{
|
||||
public Dictionary<string, string> attributes = attributes;
|
||||
public Probmethods.probMethodDelegate probMethod = probMethod;
|
||||
public List<Datapoint> datapoints = datapoints;
|
||||
public int id;
|
||||
public string name = name;
|
||||
}
|
||||
Reference in New Issue
Block a user