예제 #1
0
 public MapInteractActor(string uuid, string name, InteractActorType type, int id)
 {
     Uuid = uuid;
     Name = name;
     Type = type;
     Id   = id;
 }
예제 #2
0
 public MapInteractActor(string uuid, string name, InteractActorType type, int interactId, int recipeId = 0)
 {
     Uuid       = uuid;
     Name       = name;
     Type       = type;
     InteractId = interactId;
     RecipeId   = recipeId;
 }
예제 #3
0
 public InteractActor(string uuid, string name, InteractActorType type)
 {
     Uuid = uuid;
     Name = name;
     Type = type;
 }