mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-29 06:07:56 +03:00
9 lines
130 B
C
9 lines
130 B
C
![]() |
#pragma once
|
||
|
|
||
|
class CGunListener
|
||
|
{
|
||
|
public:
|
||
|
virtual ~CGunListener() = default;
|
||
|
virtual void SetGunPosition(float, float) = 0;
|
||
|
};
|