Skip to content

Commit

Permalink
Update code format
Browse files Browse the repository at this point in the history
  • Loading branch information
Lacyway committed Oct 10, 2024
1 parent b42e0ee commit eabacb0
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
8 changes: 7 additions & 1 deletion Fika.Core/Coop/HostClasses/CoopHostGrenade.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ namespace Fika.Core.Coop.HostClasses
{
public class CoopHostGrenade : Grenade
{
public override bool HasNetData => true;
public override bool HasNetData
{
get
{
return true;
}
}
}
}
8 changes: 7 additions & 1 deletion Fika.Core/Coop/HostClasses/CoopHostSmokeGrenade.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
{
public class CoopHostSmokeGrenade : SmokeGrenade
{
public override bool HasNetData => true;
public override bool HasNetData
{
get
{
return true;
}
}
}
}
8 changes: 7 additions & 1 deletion Fika.Core/Coop/HostClasses/CoopHostStunGrenade.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
{
public class CoopHostStunGrenade : StunGrenade
{
public override bool HasNetData => true;
public override bool HasNetData
{
get
{
return true;
}
}
}
}

0 comments on commit eabacb0

Please sign in to comment.