mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 20:12:23 +00:00
10 lines
169 B
C#
10 lines
169 B
C#
using Microsoft.Xna.Framework;
|
|
|
|
namespace Sandbox.Components
|
|
{
|
|
public class Raindrop
|
|
{
|
|
public Vector2 Velocity;
|
|
public float Size = 3;
|
|
}
|
|
} |