12 lines
220 B
C#
12 lines
220 B
C#
|
using UnityEngine;
|
||
|
|
||
|
public struct ScoreChanged : EventManager.Event
|
||
|
{
|
||
|
public Vector3 scoreFloaterPosition;
|
||
|
|
||
|
public ScoreChanged(Vector3 scoreFloaterPosition)
|
||
|
{
|
||
|
this.scoreFloaterPosition = scoreFloaterPosition;
|
||
|
}
|
||
|
}
|