aboutsummaryrefslogtreecommitdiff
path: root/cvs/cvsweb.cgi/~checkout~/code/client/Attic/client.cpp?rev=1.1&content-type=text/plain&hideattic=0&sortby=date/index.html
blob: b61f812aa808a281776622ad22dfc7e5ea2708e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#include <windows.h>
#include <gl/gl.h>

#include "nel/misc/types_nl.h"
#include "login_interface.h"



LogUserId login()
{
	CLoginInterface logscreen;
	logscreen.init(800,600);
	return logscreen.log();
}


/****************************************************************\
							MAIN
\****************************************************************/
void main()
{
	LogUserId id = login();
	// connect
	// list

}