source: java/main/src/main/java/com/framsticks/params/SetStateFlags.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: 509 bytes
Line 
1package com.framsticks.params;
2
3/** This class contains constants regarding set operation state.
4 *
5 * Based on c++ defines located in: cpp/gdk/param.h
6 *
7 * @author Jarek Szymczak <name.surname@gmail.com>
8 * (please replace name and surname with my personal data)
9 *
10 * @@author Piotr Sniegowski
11 */
12public final class SetStateFlags {
13        public static final int PSET_RONLY = 1;
14
15        public static final int PSET_CHANGED = 2;
16
17        public static final int PSET_HITMIN = 4;
18
19        public static final int PSET_HITMAX = 8;
20}
Note: See TracBrowser for help on using the repository browser.