ViewVC Help
View File
|
Revision Log
|
View Changeset
|
Root Listing
root
/
Oni2
/
java
/
ModDepotAccess
/
src
/
net
/
oni2
/
moddepot
/
ECompatiblePlatform.java
Revision:
748
Committed:
Tue Mar 26 17:24:53 2013 UTC
(12 years, 6 months ago) by
alloc
Content type:
text/x-java
File size:
215 byte(s)
Log Message:
java lib: Mod depot access
File Contents
#
Content
1
package
net.oni2.moddepot
;
2
3
/**
4
* @author Christian Illy
5
*/
6
public
enum
ECompatiblePlatform
{
7
/**
8
* Only for Win
9
*/
10
WIN
,
11
/**
12
* Only for MacOS
13
*/
14
MACOS
,
15
/**
16
* Usable with both platforms
17
*/
18
BOTH
19
}