~ubuntu-branches/ubuntu/wily/gnome-chess/wily

« back to all changes in this revision

Viewing changes to src/chess-game.vala

  • Committer: Package Import Robot
  • Author(s): Emilio Pozuelo Monfort, Jeremy Bicha, Emilio Pozuelo Monfort
  • Date: 2013-05-25 18:48:35 UTC
  • mfrom: (0.1.6 sid) (1.1.4)
  • Revision ID: package-import@ubuntu.com-20130525184835-jdun5lv3y5ztbqx3
Tags: 1:3.8.2-1
[ Jeremy Bicha ]
* Package split from gnome-games
* Add transitional package for rename from glchess

[ Emilio Pozuelo Monfort ]
* debian/control.in:
  + Swith valac-0.18 build dependency to valac (>= 0.18).

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
    public signal bool do_resign ();
14
14
    public signal bool do_claim_draw ();
15
15
 
 
16
    private bool _local_human = false;
 
17
    public bool local_human
 
18
    {
 
19
        get { return _local_human; }
 
20
        set
 
21
        {
 
22
            _local_human = value;
 
23
        }
 
24
    }
 
25
 
16
26
    public ChessPlayer (Color color)
17
27
    {
18
28
        this.color = color;