Morpion solitaire/Java: Difference between revisions

m
Fixed syntax highlighting.
(Adding long example on separate page, use java5 highlighting for any Java version past 5 (until we get more in GeSHi))
 
m (Fixed syntax highlighting.)
 
(One intermediate revision by one other user not shown)
Line 2:
Player vs computer. Click right-mouse button for hints. When multiple lines can be formed, click the green end point of the line you wish to select.
 
<langsyntaxhighlight lang="java5">import java.awt.*;
import java.awt.event.*;
import java.util.*;
Line 44:
setBackground(Color.white);
 
setFont(new Font("SansSerif", Font.BOLD, 2016));
scoreFont = new Font("SansSerif", Font.BOLD, 12);
 
Line 413:
points[p.y][p.x] |= HINT;
}
}</langsyntaxhighlight>
9,487

edits