mirror of
https://github.com/encounter/Petari.git
synced 2026-03-30 11:34:15 -07:00
15 lines
242 B
C++
15 lines
242 B
C++
#pragma once
|
|
|
|
#include "Game/LiveActor/LiveActor.hpp"
|
|
|
|
class GroundChecker : public LiveActor {
|
|
public:
|
|
GroundChecker(const char *, f32, f32);
|
|
|
|
virtual ~GroundChecker();
|
|
|
|
void bringFriction(f32, f32);
|
|
|
|
f32 _8C;
|
|
f32 _90;
|
|
}; |