1
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
using Main;
|
||||
using UnityEngine;
|
||||
|
||||
namespace Stary.Evo
|
||||
{
|
||||
@@ -6,14 +7,25 @@ namespace Stary.Evo
|
||||
{
|
||||
private OpenDomainType OpenDomainType { get; set; }
|
||||
|
||||
private Vector3 position;
|
||||
|
||||
public ProgressBarPanel ProgressBarPanel { get; set; }
|
||||
public void SetOpenDomainType(OpenDomainType type)
|
||||
{
|
||||
this.OpenDomainType = type;
|
||||
}
|
||||
public void SetPosition(Vector3 position)
|
||||
{
|
||||
this.position = position;
|
||||
}
|
||||
public OpenDomainType GetOpenDomainType()
|
||||
{
|
||||
return this.OpenDomainType;
|
||||
}
|
||||
|
||||
public Vector3 GetPosition()
|
||||
{
|
||||
return this.position;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user