Files
crystall-punk-14/Content.Client/Projectiles/ProjectileComponent.cs

9 lines
235 B
C#
Raw Normal View History

2021-06-09 22:19:39 +02:00
using Content.Shared.Projectiles;
2020-07-02 23:24:27 +02:00
2021-06-09 22:19:39 +02:00
namespace Content.Client.Projectiles
2020-07-02 23:24:27 +02:00
{
[RegisterComponent]
[ComponentReference(typeof(SharedProjectileComponent))]
2022-07-09 13:46:11 +10:00
public sealed class ProjectileComponent : SharedProjectileComponent {}
2020-07-02 23:24:27 +02:00
}