mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-23 01:59:43 +01:00
Unexport yline
It's a method of entityclass, even though it doesn't use anything on the class and it's not used outside of Entity.cpp.
This commit is contained in:
parent
52e29b68bc
commit
7347975cc5
2 changed files with 1 additions and 3 deletions
|
@ -4211,7 +4211,7 @@ float entityclass::hplatformat(const int px, const int py)
|
|||
return -1000;
|
||||
}
|
||||
|
||||
int entityclass::yline( int a, int b )
|
||||
static int yline( int a, int b )
|
||||
{
|
||||
if (a < b) return -1;
|
||||
return 1;
|
||||
|
|
|
@ -132,8 +132,6 @@ public:
|
|||
|
||||
float hplatformat(int px, int py);
|
||||
|
||||
int yline(int a, int b);
|
||||
|
||||
bool entityhlinecollide(int t, int l);
|
||||
|
||||
bool entityvlinecollide(int t, int l);
|
||||
|
|
Loading…
Reference in a new issue