11 lines
163 B
C#
11 lines
163 B
C#
using System;
|
|
|
|
namespace Zenject.SpaceFighter
|
|
{
|
|
[Serializable]
|
|
public class EnemyCommonSettings
|
|
{
|
|
public float AttackDistance = 15.0f;
|
|
}
|
|
}
|