*** empty log message ***

This commit is contained in:
janna
2004-10-27 18:24:56 +00:00
parent 25492ab0b9
commit b99bcb1ab6
4 changed files with 490 additions and 373 deletions

View File

@@ -0,0 +1,13 @@
//package javaGUI;
public class LinPosition
{
public String position;
public boolean correctPosition = true;
LinPosition(String p, boolean cor)
{
position = p;
correctPosition = cor ;
}
}