source: java/client_3D/src/com/framsticks/net/client3D/NeuroDef.java @ 66

Last change on this file since 66 was 66, checked in by Maciej Komosinski, 13 years ago

set 'eol-style' to 'native'

  • Property svn:eol-style set to native
File size: 226 bytes
Line 
1package com.framsticks.net.client3D;
2
3public class NeuroDef {
4        public static enum LocationType {
5                None, Part, Joint
6        };
7
8        public LocationType locationType = LocationType.None;
9        public int locationIndex;
10        public String def;
11}
Note: See TracBrowser for help on using the repository browser.