Skip to content

Commit

Permalink
Scrap whatever the hell I was doing
Browse files Browse the repository at this point in the history
see notes at issue #3
  • Loading branch information
ACBob committed Apr 9, 2021
1 parent 79544ee commit 86e5779
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 9 deletions.
1 change: 0 additions & 1 deletion src/ClientCMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ set(clientSources
fpsgame/weapon.cpp

# entities
fpsgame/bubeplayer.cpp

engine/scriptapi.cpp
)
Expand Down
1 change: 0 additions & 1 deletion src/ServerCMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ set(serverSources
engine/scriptapi.cpp

# entities
fpsgame/bubeplayer.cpp
)
list(TRANSFORM serverSources PREPEND "src/")

Expand Down
2 changes: 2 additions & 0 deletions src/engine/entbase.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ class BaseEntity {


// Ported from physent
{
vec o, vel, falling; // origin, velocity
vec deltapos, newpos; // movement interpolation
float yaw, pitch, roll;
Expand Down Expand Up @@ -80,6 +81,7 @@ class BaseEntity {
return timeinair || physstate < PHYS_FLOOR || vel.squaredlen() > 1e-4f || deltapos.squaredlen() > 1e-4f;
}
// End ported from physent
}

protected:
vec position; // Position in 3d space
Expand Down
4 changes: 0 additions & 4 deletions src/fpsgame/baseplayer.h

This file was deleted.

3 changes: 0 additions & 3 deletions src/fpsgame/bubeplayer.cpp

This file was deleted.

0 comments on commit 86e5779

Please sign in to comment.