Play-/Source/GunListener.h

9 lines
130 B
C
Raw Normal View History

2023-03-19 22:24:29 -04:00
#pragma once
class CGunListener
{
public:
virtual ~CGunListener() = default;
virtual void SetGunPosition(float, float) = 0;
};