summaryrefslogtreecommitdiff
path: root/src/engine/actors/Ship.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/actors/Ship.cpp')
-rw-r--r--src/engine/actors/Ship.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/engine/actors/Ship.cpp b/src/engine/actors/Ship.cpp
index 5af3553e2..de92eec62 100644
--- a/src/engine/actors/Ship.cpp
+++ b/src/engine/actors/Ship.cpp
@@ -20,8 +20,8 @@ AShip::AShip(FVector pos, AShip::Skin skin) {
Pos[1] = pos.y;
Pos[2] = pos.z;
Scale = FVector(0.4, 0.4, 0.4);
-
- switch(skin) {
+
+ switch (skin) {
case GHOSTSHIP:
Name = "Ghostship";
_skin = ghostship_Plane_mesh;
@@ -53,4 +53,6 @@ void AShip::Tick() {
// Rot.yaw = -static_cast<int16_t>(angle * (32768.0f / M_PI / 2.0f));
}
-bool AShip::IsMod() { return true; }
+bool AShip::IsMod() {
+ return true;
+}