mirror of
https://github.com/alliedmodders/sourcemod.git
synced 2025-12-07 18:38:37 +00:00
16 lines
154 B
SourcePawn
16 lines
154 B
SourcePawn
native CloseHandle(Handle:this);
|
|
|
|
methodmap Handle {
|
|
Close = CloseHandle;
|
|
};
|
|
|
|
methodmap Crab {
|
|
};
|
|
|
|
public main()
|
|
{
|
|
new Crab:x;
|
|
new Handle:y;
|
|
x = y;
|
|
}
|