001a16cf32
feat: add new logic EC_World.
13 lines
270 B
C#
13 lines
270 B
C#
namespace BrewMonster.Scripts.Task
|
|
{
|
|
public struct TASK_EXPRESSION
|
|
{
|
|
public int type;
|
|
public float value;
|
|
|
|
public bool Equals(TASK_EXPRESSION src)
|
|
{
|
|
return (type == src.type && value == src.value);
|
|
}
|
|
}
|
|
} |