diplomacy.kbasic_class
my_game As game
diplomacy ()
do_war (fromNation, toNation)
do_peace (fromNation, toNation)
do_economy (fromNation, toNation)
do_science (fromNation, toNation)
do_town (fromNation, toNation)
do_money (fromNation, toNation)
do_goods (fromNation, toNation)
do_attack (fromNation, toNation)
Class diplomacy
Private my_game As game
/*
Declare war, peace,
New treaty : economy, science
give/get town, money, goods, attack opponent
*/
Constructor diplomacy()
End Constructor
Sub do_war(fromNation As nation_type, toNation As nation_type)
End Sub
Sub do_peace(fromNation As nation_type, toNation As nation_type)
End Sub
Sub do_economy(fromNation As nation_type, toNation As nation_type)
End Sub
Sub do_science(fromNation As nation_type, toNation As nation_type)
End Sub
Sub do_town(fromNation As nation_type, toNation As nation_type)
End Sub
Sub do_money(fromNation As nation_type, toNation As nation_type)
End Sub
Sub do_goods(fromNation As nation_type, toNation As nation_type)
End Sub
Sub do_attack(fromNation As nation_type, toNation As nation_type)
End Sub
End Class