View difference between Paste ID: et78Bgu1 and pu9q6tuv
SHOW: | | - or go back to the newest paste.
1
using System;
2
using System.Windows.Forms;
3
using GTA;
4
5
namespace LockDoors
6
{
7
    public class LockDoors:Script
8
    {
9
        public LockDoors()
10
        {
11-
KeyDown +=
11+
            KeyDown += new GTA.KeyEventHandler(LockDoors_KeyDown);
12
        }
13
14
        void LockDoors_KeyDown(object sender, GTA.KeyEventArgs e)
15
        {
16
            throw new NotImplementedException();
17
        }
18
    }
19
}