source: java/main/src/main/java/com/framsticks/model/BaseNeuro.java @ 193

Last change on this file since 193 was 193, checked in by Maciej Komosinski, 10 years ago

Set svn:eol-style native for all textual files

  • Property svn:eol-style set to native
File size: 290 bytes
Line 
1package com.framsticks.model;
2
3import com.framsticks.params.annotations.ParamAnnotation;
4
5/**
6 * Author: Piotr Śniegowski
7 */
8public class BaseNeuro {
9
10        @ParamAnnotation(id = "getInputCount")
11        public int inputCount;
12
13
14        public void copyFrom(BaseNeuro n) {
15                inputCount = n.inputCount;
16        }
17}
Note: See TracBrowser for help on using the repository browser.