mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 12:06:37 +00:00
8 lines
142 B
C#
8 lines
142 B
C#
namespace Platformer.Components
|
|
{
|
|
public class Enemy
|
|
{
|
|
public float Speed = 100;
|
|
public float TimeLeft = 1.0f;
|
|
}
|
|
} |