-
Notifications
You must be signed in to change notification settings - Fork 12
Open
Labels
Description
Named enums are finally work again in SM v.1.11.
Is it possible to add listing of enum values in "Intellisense & Autocomplete" window whenever we're entering "=" ?
#pragma semicolon 1
#pragma newdecls required
#include <sourcemod>
enum SET_ACTION
{
SET_ACTION_NONE,
SET_ACTION_CREATE,
SET_ACTION_MODIFY
}
public void OnPluginStart()
{
SET_ACTION act;
act =
}
Much thanks.