mirror of
https://github.com/quizhizhe/LiteLoaderBDS-1.16.40.git
synced 2025-06-06 12:03:39 +00:00
37 lines
295 B
C++
37 lines
295 B
C++
#ifndef ENTT_SIGNAL_FWD_HPP
|
|
#define ENTT_SIGNAL_FWD_HPP
|
|
|
|
|
|
namespace entt {
|
|
|
|
|
|
template<typename>
|
|
class delegate;
|
|
|
|
|
|
class dispatcher;
|
|
|
|
|
|
template<typename>
|
|
class emitter;
|
|
|
|
|
|
class connection;
|
|
|
|
|
|
struct scoped_connection;
|
|
|
|
|
|
template<typename>
|
|
class sink;
|
|
|
|
|
|
template<typename>
|
|
class sigh;
|
|
|
|
|
|
}
|
|
|
|
|
|
#endif
|