Skip to content

Commit

Permalink
Add static prop descriptors for blade symphony
Browse files Browse the repository at this point in the history
  • Loading branch information
rihi committed Sep 30, 2024
1 parent 64625ea commit 0a6820d
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,10 @@ private StaticPropStructDescriptor(Supplier<? extends DStaticProp> structSupplie
new StaticPropStructDescriptor(DStaticPropV10CSGO::new, 10, COUNTER_STRIKE_GO),
new StaticPropStructDescriptor(DStaticPropV11CSGO::new, 11, COUNTER_STRIKE_GO),
// Insurgency is based of the csgo engine branch, so we can use DStaticPropV10CSGO
new StaticPropStructDescriptor(DStaticPropV10CSGO::new, 10, INSURGENCY)
new StaticPropStructDescriptor(DStaticPropV10CSGO::new, 10, INSURGENCY),
// Blade Symphony is based of the csgo engine branch (I think), so we can use DStaticPropV10CSGO/DStaticPropV11CSGO
new StaticPropStructDescriptor(DStaticPropV10CSGO::new, 10, BLADE_SYMPHONY),
new StaticPropStructDescriptor(DStaticPropV11CSGO::new, 11, BLADE_SYMPHONY)
);


Expand Down

0 comments on commit 0a6820d

Please sign in to comment.