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

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

added sources of the 3D client for the Framsticks server

File size: 237 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.