Skip to content

Commit

Permalink
Added new Classes: *Added the Transaction,
Browse files Browse the repository at this point in the history
TransactionUI and TestTransaction classes. No methods are created yet.
  • Loading branch information
Gavin Li committed Feb 20, 2015
1 parent 3e3bc27 commit dc1c3ee
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
12 changes: 12 additions & 0 deletions MerchantRPGCSE2102/src/controller/Transaction.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package controller;

import view.TransactionUI;
import model.Merchant;
import model.Player;

public class Transaction
{
private Player _player;
private Merchant _targetMerchant;
private TransactionUI _window;
}
8 changes: 8 additions & 0 deletions MerchantRPGCSE2102/src/tests/TestTransaction.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package tests;

import junit.framework.TestCase;

public class TestTransaction extends TestCase
{

}
5 changes: 5 additions & 0 deletions MerchantRPGCSE2102/src/view/TransactionUI.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package view;

public class TransactionUI {

}

0 comments on commit dc1c3ee

Please sign in to comment.