Back to project page spacegunner.
The source code is released under:
MIT License
If you think the Android project spacegunner listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.example.spacegunner.gameresult; /* w w w . j a v a 2 s . c o m*/ public class GameResultModelImpl implements GameResultModel { private final int points; public GameResultModelImpl(int points) { super(); this.points = points; } @Override public int getPoints() { return this.points; } }