13 lines
No EOL
224 B
C#
13 lines
No EOL
224 B
C#
namespace WingsEmu.Master.Sessions
|
|
{
|
|
public class EncryptionKeyFactory
|
|
{
|
|
private int _key;
|
|
|
|
public int CreateEncryptionKey()
|
|
{
|
|
_key += 2;
|
|
return _key;
|
|
}
|
|
}
|
|
} |