Code/ChitChat/Events/IEventActionListener.cs
using Sandbox;

namespace ChitChat;

public interface IEventActionListener : ISceneEvent<IEventActionListener>
{
	public void OnEventAction(string eventName);
}